|
@@ -65,26 +65,60 @@
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
- <dependency>
|
|
|
- <groupId>org.jetbrains.kotlin</groupId>
|
|
|
- <artifactId>kotlin-stdlib</artifactId>
|
|
|
- <version>${kotlin.version}</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.jetbrains.kotlin</groupId>
|
|
|
- <artifactId>kotlin-stdlib-common</artifactId>
|
|
|
- <version>${kotlin.version}</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.jetbrains.kotlin</groupId>
|
|
|
- <artifactId>kotlin-stdlib-jdk8</artifactId>
|
|
|
- <version>${kotlin.version}</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.jetbrains.kotlin</groupId>
|
|
|
- <artifactId>kotlin-stdlib-jdk7</artifactId>
|
|
|
- <version>${kotlin.version}</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-stdlib-common</artifactId>-->
|
|
|
+<!-- <version>${kotlin.version}</version>-->
|
|
|
+<!-- </dependency>-->
|
|
|
+<!-- <dependency>-->
|
|
|
+<!-- <groupId>org.jetbrains.kotlin</groupId>-->
|
|
|
+<!-- <artifactId>kotlin-stdlib-jdk8</artifactId>-->
|
|
|
+<!-- <version>${kotlin.version}</version>-->
|
|
|
+<!-- </dependency>-->
|
|
|
+<!-- <dependency>-->
|
|
|
+<!-- <groupId>org.jetbrains.kotlin</groupId>-->
|
|
|
+<!-- <artifactId>kotlin-stdlib-jdk7</artifactId>-->
|
|
|
+<!-- <version>${kotlin.version}</version>-->
|
|
|
+<!-- </dependency>-->
|
|
|
</dependencies>
|
|
|
-
|
|
|
+ <build>
|
|
|
+ <plugins>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-surefire-plugin</artifactId>
|
|
|
+ <configuration>
|
|
|
+ <skip>true</skip>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+ <plugin>
|
|
|
+ <artifactId>maven-assembly-plugin</artifactId>
|
|
|
+ <version>3.4.2</version>
|
|
|
+ <configuration>
|
|
|
+ <archive>
|
|
|
+ <manifest>
|
|
|
+ <!--这里指定要运行的main类-->
|
|
|
+ <mainClass>demo.allInsert.InsertHistoricalRandomData</mainClass>
|
|
|
+ </manifest>
|
|
|
+ </archive>
|
|
|
+ <descriptorRefs>
|
|
|
+ <descriptorRef>jar-with-dependencies</descriptorRef>
|
|
|
+ </descriptorRefs>
|
|
|
+ </configuration>
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <id>make-assembly</id>
|
|
|
+ <phase>package</phase>
|
|
|
+ <goals>
|
|
|
+ <goal>single</goal>
|
|
|
+ </goals>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
+ </plugin>
|
|
|
+ </plugins>
|
|
|
+ </build>
|
|
|
</project>
|