|
|
|
@ -6,9 +6,10 @@ |
|
|
|
|
|
|
|
|
|
<groupId>com.tsl3060.open.extend</groupId> |
|
|
|
|
<artifactId>tsl-open-sdk-java-wanshun</artifactId> |
|
|
|
|
<version>0.3.12</version> |
|
|
|
|
<version>0.3.13</version> |
|
|
|
|
|
|
|
|
|
<properties> |
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
|
|
|
<maven.compiler.source>8</maven.compiler.source> |
|
|
|
|
<maven.compiler.target>8</maven.compiler.target> |
|
|
|
|
|
|
|
|
@ -18,6 +19,8 @@ |
|
|
|
|
<logback.version>1.4.7</logback.version> |
|
|
|
|
</properties> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<dependencies> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
@ -77,6 +80,7 @@ |
|
|
|
|
</dependencyManagement> |
|
|
|
|
|
|
|
|
|
<build> |
|
|
|
|
|
|
|
|
|
<plugins> |
|
|
|
|
<plugin> |
|
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
@ -111,6 +115,39 @@ |
|
|
|
|
<!-- </execution>--> |
|
|
|
|
<!-- </executions>--> |
|
|
|
|
<!-- </plugin>--> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<plugin> |
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-antrun-plugin --> |
|
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId> |
|
|
|
|
<version>3.1.0</version> |
|
|
|
|
<executions> |
|
|
|
|
<execution> |
|
|
|
|
<goals> |
|
|
|
|
<goal>run</goal> |
|
|
|
|
</goals> |
|
|
|
|
<phase>generate-sources</phase> |
|
|
|
|
<configuration> |
|
|
|
|
<target> |
|
|
|
|
<property name="src.dir" value="${project.build.sourceDirectory}" /> |
|
|
|
|
<property name="package.dir" value="com/tsl3060/open/extend/core/constant" /> |
|
|
|
|
<property name="package.name" value="com.tsl3060.open.extend.core.constant" /> |
|
|
|
|
<property name="project.version" value="${project.version}" /> |
|
|
|
|
|
|
|
|
|
<echo file="${src.dir}/${package.dir}/BuildInfo.java" message="package ${package.name};${line.separator}" /> |
|
|
|
|
<echo file="${src.dir}/${package.dir}/BuildInfo.java" append="true" message="public final class BuildInfo {${line.separator}" /> |
|
|
|
|
<echo file="${src.dir}/${package.dir}/BuildInfo.java" append="true" |
|
|
|
|
message="/** SDK Version */${line.separator}public static String VERSION="${project.version}";${line.separator}" /> |
|
|
|
|
<echo file="${src.dir}/${package.dir}/BuildInfo.java" append="true" message="}${line.separator}" /> |
|
|
|
|
<echo message="BUILD OK" /> |
|
|
|
|
</target> |
|
|
|
|
</configuration> |
|
|
|
|
</execution> |
|
|
|
|
</executions> |
|
|
|
|
|
|
|
|
|
</plugin> |
|
|
|
|
|
|
|
|
|
</plugins> |
|
|
|
|
</build> |
|
|
|
|
|
|
|
|
|