|
@@ -3,11 +3,13 @@
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
<groupId>gk-college-export</groupId>
|
|
|
- <artifactId>gk-college-export</artifactId>
|
|
|
+ <artifactId>yunkai-export</artifactId>
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
<properties>
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
<maven.compiler.encoding>UTF-8</maven.compiler.encoding>
|
|
|
+ <maven.compiler.source>1.8</maven.compiler.source>
|
|
|
+ <maven.compiler.target>1.8</maven.compiler.target>
|
|
|
</properties>
|
|
|
<dependencies>
|
|
|
<dependency>
|
|
@@ -98,115 +100,17 @@
|
|
|
</dependencies>
|
|
|
|
|
|
<build>
|
|
|
+ <finalName>${project.artifactId}</finalName>
|
|
|
+
|
|
|
<plugins>
|
|
|
<plugin>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
- </plugin>
|
|
|
- <plugin>
|
|
|
- <groupId>org.apache.maven.plugins</groupId>
|
|
|
- <artifactId>maven-surefire-plugin</artifactId>
|
|
|
- <configuration>
|
|
|
- <testFailureIgnore>true</testFailureIgnore>
|
|
|
- <skipTests>true</skipTests>
|
|
|
- </configuration>
|
|
|
- </plugin>
|
|
|
- <plugin>
|
|
|
- <groupId>org.apache.maven.plugins</groupId>
|
|
|
- <artifactId>maven-compiler-plugin</artifactId>
|
|
|
- <configuration>
|
|
|
- <source>1.8</source>
|
|
|
- <target>1.8</target>
|
|
|
- <compilerArgument>-proc:none</compilerArgument>
|
|
|
- </configuration>
|
|
|
- </plugin>
|
|
|
- <plugin>
|
|
|
- <groupId>org.apache.maven.plugins</groupId>
|
|
|
- <artifactId>maven-source-plugin</artifactId>
|
|
|
<configuration>
|
|
|
- <attach>true</attach>
|
|
|
- </configuration>
|
|
|
- <executions>
|
|
|
- <execution>
|
|
|
- <phase>compile</phase>
|
|
|
- <goals>
|
|
|
- <goal>jar</goal>
|
|
|
- </goals>
|
|
|
- </execution>
|
|
|
- </executions>
|
|
|
- </plugin>
|
|
|
- <plugin>
|
|
|
- <groupId>org.apache.maven.plugins</groupId>
|
|
|
- <artifactId>maven-jar-plugin</artifactId>
|
|
|
- <version>2.6</version>
|
|
|
- <configuration>
|
|
|
- <archive>
|
|
|
- <manifest>
|
|
|
- <addClasspath>true</addClasspath>
|
|
|
- <classpathPrefix>lib/</classpathPrefix>
|
|
|
- <mainClass>cn.com.qmth.export.Export</mainClass>
|
|
|
- </manifest>
|
|
|
- </archive>
|
|
|
- </configuration>
|
|
|
- </plugin>
|
|
|
- <plugin>
|
|
|
- <groupId>org.apache.maven.plugins</groupId>
|
|
|
- <artifactId>maven-dependency-plugin</artifactId>
|
|
|
- <version>2.10</version>
|
|
|
- <executions>
|
|
|
- <execution>
|
|
|
- <id>copy-dependencies</id>
|
|
|
- <phase>package</phase>
|
|
|
- <goals>
|
|
|
- <goal>copy-dependencies</goal>
|
|
|
- </goals>
|
|
|
- <configuration>
|
|
|
- <outputDirectory>${project.build.directory}/lib</outputDirectory>
|
|
|
- </configuration>
|
|
|
- </execution>
|
|
|
- </executions>
|
|
|
- </plugin>
|
|
|
- <plugin>
|
|
|
- <groupId>io.github.swagger2markup</groupId>
|
|
|
- <artifactId>swagger2markup-maven-plugin</artifactId>
|
|
|
- <version>1.2.0</version>
|
|
|
- <configuration>
|
|
|
-
|
|
|
- <swaggerInput>http://192.168.1.91:8090/v2/api-docs</swaggerInput>
|
|
|
- <outputDir>src/docs/asciidoc/generated</outputDir>
|
|
|
- <config>
|
|
|
-
|
|
|
- <swagger2markup.markupLanguage>ASCIIDOC</swagger2markup.markupLanguage>
|
|
|
- </config>
|
|
|
+ <includeSystemScope>true</includeSystemScope>
|
|
|
</configuration>
|
|
|
</plugin>
|
|
|
</plugins>
|
|
|
</build>
|
|
|
|
|
|
- <repositories>
|
|
|
- <repository>
|
|
|
- <id>nexus</id>
|
|
|
- <name>Nexus</name>
|
|
|
- <url>http://nexus-host:8081/repository/maven-public/</url>
|
|
|
- </repository>
|
|
|
- </repositories>
|
|
|
-
|
|
|
- <pluginRepositories>
|
|
|
- <pluginRepository>
|
|
|
- <id>nexus</id>
|
|
|
- <name>Nexus</name>
|
|
|
- <url>http://nexus-host:8081/repository/maven-public/</url>
|
|
|
- </pluginRepository>
|
|
|
- </pluginRepositories>
|
|
|
-
|
|
|
- <distributionManagement>
|
|
|
- <repository>
|
|
|
- <id>releases</id>
|
|
|
- <url>http://nexus-host:8081/repository/maven-releases/</url>
|
|
|
- </repository>
|
|
|
- <snapshotRepository>
|
|
|
- <id>snapshots</id>
|
|
|
- <url>http://nexus-host:8081/repository/maven-snapshots/</url>
|
|
|
- </snapshotRepository>
|
|
|
- </distributionManagement>
|
|
|
</project>
|