| | |
| | | <artifactId>jackson-annotations</artifactId> |
| | | <version>2.2.3</version> |
| | | </dependency> |
| | | <!--<dependency>--> |
| | | <!--<groupId>org.jetbrains.kotlin</groupId>--> |
| | | <!--<artifactId>kotlin-stdlib</artifactId>--> |
| | | <!--<version>${kotlin.version}</version>--> |
| | | <!--</dependency>--> |
| | | <dependency> |
| | | <groupId>net.coobird</groupId> |
| | | <artifactId>thumbnailator</artifactId> |
| | | <version>0.4.3</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.aliyun.oss</groupId> |
| | | <artifactId>aliyun-sdk-oss</artifactId> |
| | | <version>2.2.1</version> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>com.aliyun</groupId> |
| | | <artifactId>aliyun-java-sdk-green</artifactId> |
| | | <version>3.0.0</version> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>com.aliyun</groupId> |
| | | <artifactId>aliyun-java-sdk-core</artifactId> |
| | | <version>3.0.7</version> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>com.aliyun</groupId> |
| | | <artifactId>aliyun-java-sdk-push</artifactId> |
| | | <version>2.1.0</version> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>org.jetbrains.kotlin</groupId> |
| | | <artifactId>kotlin-stdlib</artifactId> |
| | | <version>${kotlin.version}</version> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>org.jetbrains.kotlin</groupId> |
| | | <artifactId>kotlin-reflect</artifactId> |
| | | <version>${kotlin.version}</version> |
| | | |
| | | |
| | | |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>org.jetbrains.kotlin</groupId> |
| | | <artifactId>kotlin-test</artifactId> |
| | | <version>${kotlin.version}</version> |
| | | <scope>test</scope> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>org.jetbrains.kotlin</groupId> |
| | |
| | | <version>${kotlin.version}</version> |
| | | |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>junit</groupId> |
| | | <artifactId>junit</artifactId> |
| | | <version>4.11</version> |
| | | </dependency> |
| | | </dependencies> |
| | | |
| | | <properties> |
| | | <kotlin.version>1.2.50</kotlin.version> |
| | | <kotlin.version>1.3.0</kotlin.version> |
| | | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| | | <jdk.version>1.8</jdk.version> |
| | | <asm.version>4.2</asm.version> |
| | |
| | | |
| | | <build> |
| | | <plugins> |
| | | |
| | | <plugin> |
| | | <artifactId>kotlin-maven-plugin</artifactId> |
| | | <groupId>org.jetbrains.kotlin</groupId> |
| | | <version>1.2.50</version> |
| | | <artifactId>kotlin-maven-plugin</artifactId> |
| | | <groupId>org.jetbrains.kotlin</groupId> |
| | | <version>${kotlin.version}</version> |
| | | <configuration> |
| | | <compilerPlugins> |
| | | <!-- Or "spring" for the Spring support --> |
| | | <plugin>spring</plugin> |
| | | </compilerPlugins> |
| | | </configuration> |
| | | <dependencies> |
| | | <dependency> |
| | | <groupId>org.jetbrains.kotlin</groupId> |
| | | <artifactId>kotlin-maven-allopen</artifactId> |
| | | <version>${kotlin.version}</version> |
| | | </dependency> |
| | | </dependencies> |
| | | <executions> |
| | | <execution> |
| | | <id>compile</id> |
| | |
| | | <artifactId>maven-compiler-plugin</artifactId> |
| | | <version>3.5.1</version> |
| | | <configuration> |
| | | |
| | | <source>${jdk.version}</source> |
| | | <target>${jdk.version}</target> |
| | | </configuration> |
| | |
| | | <goals> <goal>testCompile</goal> </goals> |
| | | </execution> |
| | | </executions> |
| | | |
| | | <dependencies> |
| | | <dependency> |
| | | <groupId>org.jetbrains.kotlin</groupId> |
| | | <artifactId>kotlin-maven-allopen</artifactId> |
| | | <version>${kotlin.version}</version> |
| | | </dependency> |
| | | </dependencies> |
| | | |
| | | </plugin> |
| | | |