zhouping
5 years ago
173 changed files with 4246 additions and 121 deletions
@ -0,0 +1,7 @@ |
|||||||
|
*.iml |
||||||
|
.idea/ |
||||||
|
.DS_Store |
||||||
|
.project |
||||||
|
.classpath |
||||||
|
*.gradle |
||||||
|
classes/ |
@ -0,0 +1,7 @@ |
|||||||
|
*.iml |
||||||
|
.idea/ |
||||||
|
.DS_Store |
||||||
|
.project |
||||||
|
.classpath |
||||||
|
*.gradle |
||||||
|
classes/ |
@ -0,0 +1,114 @@ |
|||||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0" |
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||||
|
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> |
||||||
|
|
||||||
|
<parent> |
||||||
|
<groupId>com.fr.third</groupId> |
||||||
|
<artifactId>base-third</artifactId> |
||||||
|
<version>${revision}</version> |
||||||
|
</parent> |
||||||
|
|
||||||
|
<artifactId>step1</artifactId> |
||||||
|
<version>${revision}</version> |
||||||
|
|
||||||
|
<modules> |
||||||
|
<module>../../fine-antlr4</module> |
||||||
|
<module>../../fine-asm</module> |
||||||
|
<module>../../fine-aspectj</module> |
||||||
|
<module>../../fine-antlr-old</module> |
||||||
|
<module>../../fine-bouncycastle</module> |
||||||
|
<module>../../fine-classmate</module> |
||||||
|
<module>../../fine-commons-codec</module> |
||||||
|
<module>../../fine-commons-collections4</module> |
||||||
|
<module>../../fine-commons-io</module> |
||||||
|
<module>../../fine-commons-lang3</module> |
||||||
|
<module>../../fine-commons-logging</module> |
||||||
|
<module>../../fine-commons-math3</module> |
||||||
|
<module>../../fine-commons-pool</module> |
||||||
|
<module>../../fine-cssparser</module> |
||||||
|
<module>../../fine-freehep</module> |
||||||
|
<module>../../fine-guava</module> |
||||||
|
<module>../../fine-hsqldb</module> |
||||||
|
<module>../../fine-iconloader</module> |
||||||
|
<module>../../fine-icu4j</module> |
||||||
|
<module>../../fine-imageJ</module> |
||||||
|
<module>../../fine-j2v8</module> |
||||||
|
<module>../../fine-jackson</module> |
||||||
|
<!-- <module>../../fine-jai</module>--> |
||||||
|
<module>../../fine-jboss-transaction-api</module> |
||||||
|
<module>../../fine-jetbrains</module> |
||||||
|
<module>../../fine-jgit</module> |
||||||
|
<module>../../fine-jna</module> |
||||||
|
<module>../../fine-joda</module> |
||||||
|
<module>../../fine-jodd</module> |
||||||
|
<module>../../fine-jpa</module> |
||||||
|
<module>../../fine-lookandfeel</module> |
||||||
|
<module>../../fine-lucene</module> |
||||||
|
<module>../../fine-lz4</module> |
||||||
|
<module>../../fine-objenesis</module> |
||||||
|
<module>../../fine-org-dom4j</module> |
||||||
|
<module>../../fine-roaringbitmap</module> |
||||||
|
<module>../../fine-sense4</module> |
||||||
|
<module>../../fine-third-default</module> |
||||||
|
</modules> |
||||||
|
|
||||||
|
<build> |
||||||
|
<outputDirectory>${classes-path}/base-third-step1/classes</outputDirectory> |
||||||
|
<testOutputDirectory>${classes-path}/base-third-step1/test-classes</testOutputDirectory> |
||||||
|
<resources> |
||||||
|
<resource> |
||||||
|
<directory>${basedir}/src/main/java</directory> |
||||||
|
<excludes> |
||||||
|
<exclude>**/*.java</exclude> |
||||||
|
</excludes> |
||||||
|
</resource> |
||||||
|
<resource> |
||||||
|
<directory>${basedir}/src/main/resources</directory> |
||||||
|
</resource> |
||||||
|
</resources> |
||||||
|
<testResources> |
||||||
|
<testResource> |
||||||
|
<directory>${basedir}/src/test/java</directory> |
||||||
|
<excludes> |
||||||
|
<exclude>**/*.java</exclude> |
||||||
|
</excludes> |
||||||
|
</testResource> |
||||||
|
<testResource> |
||||||
|
<directory>${basedir}/src/test/resources</directory> |
||||||
|
</testResource> |
||||||
|
</testResources> |
||||||
|
<plugins> |
||||||
|
<plugin> |
||||||
|
<artifactId>maven-compiler-plugin</artifactId> |
||||||
|
<version>3.1</version> |
||||||
|
<configuration> |
||||||
|
<source>${language-level}</source> |
||||||
|
<target>${language-level}</target> |
||||||
|
<!--不生成target/generated-sources/annotations--> |
||||||
|
<proc>none</proc> |
||||||
|
</configuration> |
||||||
|
</plugin> |
||||||
|
<plugin> |
||||||
|
<groupId>org.codehaus.mojo</groupId> |
||||||
|
<artifactId>build-helper-maven-plugin</artifactId> |
||||||
|
<version>1.8</version> |
||||||
|
<executions> |
||||||
|
<execution> |
||||||
|
<id>add-source</id> |
||||||
|
<phase>generate-sources</phase> |
||||||
|
<goals> |
||||||
|
<goal>add-source</goal> |
||||||
|
</goals> |
||||||
|
<configuration> |
||||||
|
<sources> |
||||||
|
<source>src/main/java-deprecated</source> |
||||||
|
</sources> |
||||||
|
</configuration> |
||||||
|
</execution> |
||||||
|
</executions> |
||||||
|
</plugin> |
||||||
|
</plugins> |
||||||
|
</build> |
||||||
|
</project> |
@ -0,0 +1,7 @@ |
|||||||
|
*.iml |
||||||
|
.idea/ |
||||||
|
.DS_Store |
||||||
|
.project |
||||||
|
.classpath |
||||||
|
*.gradle |
||||||
|
classes/ |
@ -0,0 +1,88 @@ |
|||||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0" |
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||||
|
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> |
||||||
|
|
||||||
|
<parent> |
||||||
|
<groupId>com.fr.third</groupId> |
||||||
|
<artifactId>base-third</artifactId> |
||||||
|
<version>${revision}</version> |
||||||
|
</parent> |
||||||
|
|
||||||
|
<artifactId>step2</artifactId> |
||||||
|
<version>${revision}</version> |
||||||
|
|
||||||
|
<modules> |
||||||
|
<module>../../fine-bcprov-old</module> |
||||||
|
<module>../../fine-byte-buddy</module> |
||||||
|
<module>../../fine-cglib</module> |
||||||
|
<module>../../fine-commons-fileupload</module> |
||||||
|
<module>../../fine-httpcomponents</module> |
||||||
|
<module>../../fine-jai</module> |
||||||
|
<module>../../fine-kryo</module> |
||||||
|
<module>../../fine-log4j</module> |
||||||
|
<module>../../fine-poi</module> |
||||||
|
<module>../../fine-poi-old</module> |
||||||
|
<module>../../fine-redisson</module> |
||||||
|
<module>../../fine-xmlgraphics</module> |
||||||
|
</modules> |
||||||
|
|
||||||
|
<build> |
||||||
|
<outputDirectory>${classes-path}/base-third-step2/classes</outputDirectory> |
||||||
|
<testOutputDirectory>${classes-path}/base-third-step2/test-classes</testOutputDirectory> |
||||||
|
<resources> |
||||||
|
<resource> |
||||||
|
<directory>${basedir}/src/main/java</directory> |
||||||
|
<excludes> |
||||||
|
<exclude>**/*.java</exclude> |
||||||
|
</excludes> |
||||||
|
</resource> |
||||||
|
<resource> |
||||||
|
<directory>${basedir}/src/main/resources</directory> |
||||||
|
</resource> |
||||||
|
</resources> |
||||||
|
<testResources> |
||||||
|
<testResource> |
||||||
|
<directory>${basedir}/src/test/java</directory> |
||||||
|
<excludes> |
||||||
|
<exclude>**/*.java</exclude> |
||||||
|
</excludes> |
||||||
|
</testResource> |
||||||
|
<testResource> |
||||||
|
<directory>${basedir}/src/test/resources</directory> |
||||||
|
</testResource> |
||||||
|
</testResources> |
||||||
|
<plugins> |
||||||
|
<plugin> |
||||||
|
<artifactId>maven-compiler-plugin</artifactId> |
||||||
|
<version>3.1</version> |
||||||
|
<configuration> |
||||||
|
<source>${language-level}</source> |
||||||
|
<target>${language-level}</target> |
||||||
|
<!--不生成target/generated-sources/annotations--> |
||||||
|
<proc>none</proc> |
||||||
|
</configuration> |
||||||
|
</plugin> |
||||||
|
<plugin> |
||||||
|
<groupId>org.codehaus.mojo</groupId> |
||||||
|
<artifactId>build-helper-maven-plugin</artifactId> |
||||||
|
<version>1.8</version> |
||||||
|
<executions> |
||||||
|
<execution> |
||||||
|
<id>add-source</id> |
||||||
|
<phase>generate-sources</phase> |
||||||
|
<goals> |
||||||
|
<goal>add-source</goal> |
||||||
|
</goals> |
||||||
|
<configuration> |
||||||
|
<sources> |
||||||
|
<source>src/main/java-deprecated</source> |
||||||
|
</sources> |
||||||
|
</configuration> |
||||||
|
</execution> |
||||||
|
</executions> |
||||||
|
</plugin> |
||||||
|
</plugins> |
||||||
|
</build> |
||||||
|
</project> |
@ -0,0 +1,7 @@ |
|||||||
|
*.iml |
||||||
|
.idea/ |
||||||
|
.DS_Store |
||||||
|
.project |
||||||
|
.classpath |
||||||
|
*.gradle |
||||||
|
classes/ |
@ -0,0 +1,80 @@ |
|||||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0" |
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||||
|
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> |
||||||
|
|
||||||
|
<parent> |
||||||
|
<groupId>com.fr.third</groupId> |
||||||
|
<artifactId>base-third</artifactId> |
||||||
|
<version>${revision}</version> |
||||||
|
</parent> |
||||||
|
|
||||||
|
<artifactId>step3</artifactId> |
||||||
|
<version>${revision}</version> |
||||||
|
|
||||||
|
<modules> |
||||||
|
<module>../../fine-itext</module> |
||||||
|
<module>../../fine-javassist</module> |
||||||
|
<module>../../fine-jedis</module> |
||||||
|
<module>../../fine-jboss-logging</module> |
||||||
|
</modules> |
||||||
|
|
||||||
|
<build> |
||||||
|
<outputDirectory>${classes-path}/base-third-step3/classes</outputDirectory> |
||||||
|
<testOutputDirectory>${classes-path}/base-third-step3/test-classes</testOutputDirectory> |
||||||
|
<resources> |
||||||
|
<resource> |
||||||
|
<directory>${basedir}/src/main/java</directory> |
||||||
|
<excludes> |
||||||
|
<exclude>**/*.java</exclude> |
||||||
|
</excludes> |
||||||
|
</resource> |
||||||
|
<resource> |
||||||
|
<directory>${basedir}/src/main/resources</directory> |
||||||
|
</resource> |
||||||
|
</resources> |
||||||
|
<testResources> |
||||||
|
<testResource> |
||||||
|
<directory>${basedir}/src/test/java</directory> |
||||||
|
<excludes> |
||||||
|
<exclude>**/*.java</exclude> |
||||||
|
</excludes> |
||||||
|
</testResource> |
||||||
|
<testResource> |
||||||
|
<directory>${basedir}/src/test/resources</directory> |
||||||
|
</testResource> |
||||||
|
</testResources> |
||||||
|
<plugins> |
||||||
|
<plugin> |
||||||
|
<artifactId>maven-compiler-plugin</artifactId> |
||||||
|
<version>3.1</version> |
||||||
|
<configuration> |
||||||
|
<source>${language-level}</source> |
||||||
|
<target>${language-level}</target> |
||||||
|
<!--不生成target/generated-sources/annotations--> |
||||||
|
<proc>none</proc> |
||||||
|
</configuration> |
||||||
|
</plugin> |
||||||
|
<plugin> |
||||||
|
<groupId>org.codehaus.mojo</groupId> |
||||||
|
<artifactId>build-helper-maven-plugin</artifactId> |
||||||
|
<version>1.8</version> |
||||||
|
<executions> |
||||||
|
<execution> |
||||||
|
<id>add-source</id> |
||||||
|
<phase>generate-sources</phase> |
||||||
|
<goals> |
||||||
|
<goal>add-source</goal> |
||||||
|
</goals> |
||||||
|
<configuration> |
||||||
|
<sources> |
||||||
|
<source>src/main/java-deprecated</source> |
||||||
|
</sources> |
||||||
|
</configuration> |
||||||
|
</execution> |
||||||
|
</executions> |
||||||
|
</plugin> |
||||||
|
</plugins> |
||||||
|
</build> |
||||||
|
</project> |
@ -0,0 +1,7 @@ |
|||||||
|
*.iml |
||||||
|
.idea/ |
||||||
|
.DS_Store |
||||||
|
.project |
||||||
|
.classpath |
||||||
|
*.gradle |
||||||
|
classes/ |
@ -0,0 +1,78 @@ |
|||||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0" |
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||||
|
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> |
||||||
|
|
||||||
|
<parent> |
||||||
|
<groupId>com.fr.third</groupId> |
||||||
|
<artifactId>base-third</artifactId> |
||||||
|
<version>${revision}</version> |
||||||
|
</parent> |
||||||
|
|
||||||
|
<artifactId>step4</artifactId> |
||||||
|
<version>${revision}</version> |
||||||
|
|
||||||
|
<modules> |
||||||
|
<module>../../fine-itext-old</module> |
||||||
|
<module>../../fine-spring</module> |
||||||
|
</modules> |
||||||
|
|
||||||
|
<build> |
||||||
|
<outputDirectory>${classes-path}/base-third-step4/classes</outputDirectory> |
||||||
|
<testOutputDirectory>${classes-path}/base-third-step4/test-classes</testOutputDirectory> |
||||||
|
<resources> |
||||||
|
<resource> |
||||||
|
<directory>${basedir}/src/main/java</directory> |
||||||
|
<excludes> |
||||||
|
<exclude>**/*.java</exclude> |
||||||
|
</excludes> |
||||||
|
</resource> |
||||||
|
<resource> |
||||||
|
<directory>${basedir}/src/main/resources</directory> |
||||||
|
</resource> |
||||||
|
</resources> |
||||||
|
<testResources> |
||||||
|
<testResource> |
||||||
|
<directory>${basedir}/src/test/java</directory> |
||||||
|
<excludes> |
||||||
|
<exclude>**/*.java</exclude> |
||||||
|
</excludes> |
||||||
|
</testResource> |
||||||
|
<testResource> |
||||||
|
<directory>${basedir}/src/test/resources</directory> |
||||||
|
</testResource> |
||||||
|
</testResources> |
||||||
|
<plugins> |
||||||
|
<plugin> |
||||||
|
<artifactId>maven-compiler-plugin</artifactId> |
||||||
|
<version>3.1</version> |
||||||
|
<configuration> |
||||||
|
<source>${language-level}</source> |
||||||
|
<target>${language-level}</target> |
||||||
|
<!--不生成target/generated-sources/annotations--> |
||||||
|
<proc>none</proc> |
||||||
|
</configuration> |
||||||
|
</plugin> |
||||||
|
<plugin> |
||||||
|
<groupId>org.codehaus.mojo</groupId> |
||||||
|
<artifactId>build-helper-maven-plugin</artifactId> |
||||||
|
<version>1.8</version> |
||||||
|
<executions> |
||||||
|
<execution> |
||||||
|
<id>add-source</id> |
||||||
|
<phase>generate-sources</phase> |
||||||
|
<goals> |
||||||
|
<goal>add-source</goal> |
||||||
|
</goals> |
||||||
|
<configuration> |
||||||
|
<sources> |
||||||
|
<source>src/main/java-deprecated</source> |
||||||
|
</sources> |
||||||
|
</configuration> |
||||||
|
</execution> |
||||||
|
</executions> |
||||||
|
</plugin> |
||||||
|
</plugins> |
||||||
|
</build> |
||||||
|
</project> |
@ -0,0 +1,7 @@ |
|||||||
|
*.iml |
||||||
|
.idea/ |
||||||
|
.DS_Store |
||||||
|
.project |
||||||
|
.classpath |
||||||
|
*.gradle |
||||||
|
classes/ |
@ -0,0 +1,77 @@ |
|||||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0" |
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||||
|
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> |
||||||
|
|
||||||
|
<parent> |
||||||
|
<groupId>com.fr.third</groupId> |
||||||
|
<artifactId>base-third</artifactId> |
||||||
|
<version>${revision}</version> |
||||||
|
</parent> |
||||||
|
|
||||||
|
<artifactId>step5</artifactId> |
||||||
|
<version>${revision}</version> |
||||||
|
|
||||||
|
<modules> |
||||||
|
<module>../../fine-hibernate</module> |
||||||
|
</modules> |
||||||
|
|
||||||
|
<build> |
||||||
|
<outputDirectory>${classes-path}/base-third-step5/classes</outputDirectory> |
||||||
|
<testOutputDirectory>${classes-path}/base-third-step5/test-classes</testOutputDirectory> |
||||||
|
<resources> |
||||||
|
<resource> |
||||||
|
<directory>${basedir}/src/main/java</directory> |
||||||
|
<excludes> |
||||||
|
<exclude>**/*.java</exclude> |
||||||
|
</excludes> |
||||||
|
</resource> |
||||||
|
<resource> |
||||||
|
<directory>${basedir}/src/main/resources</directory> |
||||||
|
</resource> |
||||||
|
</resources> |
||||||
|
<testResources> |
||||||
|
<testResource> |
||||||
|
<directory>${basedir}/src/test/java</directory> |
||||||
|
<excludes> |
||||||
|
<exclude>**/*.java</exclude> |
||||||
|
</excludes> |
||||||
|
</testResource> |
||||||
|
<testResource> |
||||||
|
<directory>${basedir}/src/test/resources</directory> |
||||||
|
</testResource> |
||||||
|
</testResources> |
||||||
|
<plugins> |
||||||
|
<plugin> |
||||||
|
<artifactId>maven-compiler-plugin</artifactId> |
||||||
|
<version>3.1</version> |
||||||
|
<configuration> |
||||||
|
<source>${language-level}</source> |
||||||
|
<target>${language-level}</target> |
||||||
|
<!--不生成target/generated-sources/annotations--> |
||||||
|
<proc>none</proc> |
||||||
|
</configuration> |
||||||
|
</plugin> |
||||||
|
<plugin> |
||||||
|
<groupId>org.codehaus.mojo</groupId> |
||||||
|
<artifactId>build-helper-maven-plugin</artifactId> |
||||||
|
<version>1.8</version> |
||||||
|
<executions> |
||||||
|
<execution> |
||||||
|
<id>add-source</id> |
||||||
|
<phase>generate-sources</phase> |
||||||
|
<goals> |
||||||
|
<goal>add-source</goal> |
||||||
|
</goals> |
||||||
|
<configuration> |
||||||
|
<sources> |
||||||
|
<source>src/main/java-deprecated</source> |
||||||
|
</sources> |
||||||
|
</configuration> |
||||||
|
</execution> |
||||||
|
</executions> |
||||||
|
</plugin> |
||||||
|
</plugins> |
||||||
|
</build> |
||||||
|
</project> |
@ -0,0 +1,7 @@ |
|||||||
|
*.iml |
||||||
|
.idea/ |
||||||
|
.DS_Store |
||||||
|
.project |
||||||
|
.classpath |
||||||
|
*.gradle |
||||||
|
classes/ |
@ -0,0 +1,78 @@ |
|||||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0" |
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||||
|
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> |
||||||
|
|
||||||
|
<parent> |
||||||
|
<groupId>com.fr.third</groupId> |
||||||
|
<artifactId>base-third</artifactId> |
||||||
|
<version>${revision}</version> |
||||||
|
</parent> |
||||||
|
|
||||||
|
<artifactId>step6</artifactId> |
||||||
|
<version>${revision}</version> |
||||||
|
|
||||||
|
|
||||||
|
<modules> |
||||||
|
<module>../../fine-druid</module> |
||||||
|
<module>../../fine-socketio</module> |
||||||
|
</modules> |
||||||
|
<build> |
||||||
|
<outputDirectory>${classes-path}/base-third-step6/classes</outputDirectory> |
||||||
|
<testOutputDirectory>${classes-path}/base-third-step6/test-classes</testOutputDirectory> |
||||||
|
<resources> |
||||||
|
<resource> |
||||||
|
<directory>${basedir}/src/main/java</directory> |
||||||
|
<excludes> |
||||||
|
<exclude>**/*.java</exclude> |
||||||
|
</excludes> |
||||||
|
</resource> |
||||||
|
<resource> |
||||||
|
<directory>${basedir}/src/main/resources</directory> |
||||||
|
</resource> |
||||||
|
</resources> |
||||||
|
<testResources> |
||||||
|
<testResource> |
||||||
|
<directory>${basedir}/src/test/java</directory> |
||||||
|
<excludes> |
||||||
|
<exclude>**/*.java</exclude> |
||||||
|
</excludes> |
||||||
|
</testResource> |
||||||
|
<testResource> |
||||||
|
<directory>${basedir}/src/test/resources</directory> |
||||||
|
</testResource> |
||||||
|
</testResources> |
||||||
|
<plugins> |
||||||
|
<plugin> |
||||||
|
<artifactId>maven-compiler-plugin</artifactId> |
||||||
|
<version>3.1</version> |
||||||
|
<configuration> |
||||||
|
<source>${language-level}</source> |
||||||
|
<target>${language-level}</target> |
||||||
|
<!--不生成target/generated-sources/annotations--> |
||||||
|
<proc>none</proc> |
||||||
|
</configuration> |
||||||
|
</plugin> |
||||||
|
<plugin> |
||||||
|
<groupId>org.codehaus.mojo</groupId> |
||||||
|
<artifactId>build-helper-maven-plugin</artifactId> |
||||||
|
<version>1.8</version> |
||||||
|
<executions> |
||||||
|
<execution> |
||||||
|
<id>add-source</id> |
||||||
|
<phase>generate-sources</phase> |
||||||
|
<goals> |
||||||
|
<goal>add-source</goal> |
||||||
|
</goals> |
||||||
|
<configuration> |
||||||
|
<sources> |
||||||
|
<source>src/main/java-deprecated</source> |
||||||
|
</sources> |
||||||
|
</configuration> |
||||||
|
</execution> |
||||||
|
</executions> |
||||||
|
</plugin> |
||||||
|
</plugins> |
||||||
|
</build> |
||||||
|
</project> |
@ -0,0 +1,7 @@ |
|||||||
|
*.iml |
||||||
|
.idea/ |
||||||
|
.DS_Store |
||||||
|
.project |
||||||
|
.classpath |
||||||
|
*.gradle |
||||||
|
classes/ |
@ -0,0 +1,76 @@ |
|||||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0" |
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||||
|
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> |
||||||
|
|
||||||
|
<parent> |
||||||
|
<groupId>com.fr.third</groupId> |
||||||
|
<artifactId>base-third</artifactId> |
||||||
|
<version>${revision}</version> |
||||||
|
</parent> |
||||||
|
|
||||||
|
<artifactId>step7</artifactId> |
||||||
|
<version>${revision}</version> |
||||||
|
|
||||||
|
<modules> |
||||||
|
<module>../../fine-quartz</module> |
||||||
|
</modules> |
||||||
|
<build> |
||||||
|
<outputDirectory>${classes-path}/base-third-step7/classes</outputDirectory> |
||||||
|
<testOutputDirectory>${classes-path}/base-third-step7/test-classes</testOutputDirectory> |
||||||
|
<resources> |
||||||
|
<resource> |
||||||
|
<directory>${basedir}/src/main/java</directory> |
||||||
|
<excludes> |
||||||
|
<exclude>**/*.java</exclude> |
||||||
|
</excludes> |
||||||
|
</resource> |
||||||
|
<resource> |
||||||
|
<directory>${basedir}/src/main/resources</directory> |
||||||
|
</resource> |
||||||
|
</resources> |
||||||
|
<testResources> |
||||||
|
<testResource> |
||||||
|
<directory>${basedir}/src/test/java</directory> |
||||||
|
<excludes> |
||||||
|
<exclude>**/*.java</exclude> |
||||||
|
</excludes> |
||||||
|
</testResource> |
||||||
|
<testResource> |
||||||
|
<directory>${basedir}/src/test/resources</directory> |
||||||
|
</testResource> |
||||||
|
</testResources> |
||||||
|
<plugins> |
||||||
|
<plugin> |
||||||
|
<artifactId>maven-compiler-plugin</artifactId> |
||||||
|
<version>3.1</version> |
||||||
|
<configuration> |
||||||
|
<source>${language-level}</source> |
||||||
|
<target>${language-level}</target> |
||||||
|
<!--不生成target/generated-sources/annotations--> |
||||||
|
<proc>none</proc> |
||||||
|
</configuration> |
||||||
|
</plugin> |
||||||
|
<plugin> |
||||||
|
<groupId>org.codehaus.mojo</groupId> |
||||||
|
<artifactId>build-helper-maven-plugin</artifactId> |
||||||
|
<version>1.8</version> |
||||||
|
<executions> |
||||||
|
<execution> |
||||||
|
<id>add-source</id> |
||||||
|
<phase>generate-sources</phase> |
||||||
|
<goals> |
||||||
|
<goal>add-source</goal> |
||||||
|
</goals> |
||||||
|
<configuration> |
||||||
|
<sources> |
||||||
|
<source>src/main/java-deprecated</source> |
||||||
|
</sources> |
||||||
|
</configuration> |
||||||
|
</execution> |
||||||
|
</executions> |
||||||
|
</plugin> |
||||||
|
</plugins> |
||||||
|
</build> |
||||||
|
</project> |
@ -0,0 +1,7 @@ |
|||||||
|
*.iml |
||||||
|
.idea/ |
||||||
|
.DS_Store |
||||||
|
.project |
||||||
|
.classpath |
||||||
|
*.gradle |
||||||
|
classes/ |
@ -0,0 +1,77 @@ |
|||||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0" |
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||||
|
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> |
||||||
|
|
||||||
|
<parent> |
||||||
|
<groupId>com.fr.third</groupId> |
||||||
|
<artifactId>base-third</artifactId> |
||||||
|
<version>${revision}</version> |
||||||
|
</parent> |
||||||
|
|
||||||
|
<artifactId>step8</artifactId> |
||||||
|
<version>${revision}</version> |
||||||
|
|
||||||
|
<modules> |
||||||
|
<module>../../fine-ehcache</module> |
||||||
|
</modules> |
||||||
|
|
||||||
|
<build> |
||||||
|
<outputDirectory>${classes-path}/base-third-step8/classes</outputDirectory> |
||||||
|
<testOutputDirectory>${classes-path}/base-third-step8/test-classes</testOutputDirectory> |
||||||
|
<resources> |
||||||
|
<resource> |
||||||
|
<directory>${basedir}/src/main/java</directory> |
||||||
|
<excludes> |
||||||
|
<exclude>**/*.java</exclude> |
||||||
|
</excludes> |
||||||
|
</resource> |
||||||
|
<resource> |
||||||
|
<directory>${basedir}/src/main/resources</directory> |
||||||
|
</resource> |
||||||
|
</resources> |
||||||
|
<testResources> |
||||||
|
<testResource> |
||||||
|
<directory>${basedir}/src/test/java</directory> |
||||||
|
<excludes> |
||||||
|
<exclude>**/*.java</exclude> |
||||||
|
</excludes> |
||||||
|
</testResource> |
||||||
|
<testResource> |
||||||
|
<directory>${basedir}/src/test/resources</directory> |
||||||
|
</testResource> |
||||||
|
</testResources> |
||||||
|
<plugins> |
||||||
|
<plugin> |
||||||
|
<artifactId>maven-compiler-plugin</artifactId> |
||||||
|
<version>3.1</version> |
||||||
|
<configuration> |
||||||
|
<source>${language-level}</source> |
||||||
|
<target>${language-level}</target> |
||||||
|
<!--不生成target/generated-sources/annotations--> |
||||||
|
<proc>none</proc> |
||||||
|
</configuration> |
||||||
|
</plugin> |
||||||
|
<plugin> |
||||||
|
<groupId>org.codehaus.mojo</groupId> |
||||||
|
<artifactId>build-helper-maven-plugin</artifactId> |
||||||
|
<version>1.8</version> |
||||||
|
<executions> |
||||||
|
<execution> |
||||||
|
<id>add-source</id> |
||||||
|
<phase>generate-sources</phase> |
||||||
|
<goals> |
||||||
|
<goal>add-source</goal> |
||||||
|
</goals> |
||||||
|
<configuration> |
||||||
|
<sources> |
||||||
|
<source>src/main/java-deprecated</source> |
||||||
|
</sources> |
||||||
|
</configuration> |
||||||
|
</execution> |
||||||
|
</executions> |
||||||
|
</plugin> |
||||||
|
</plugins> |
||||||
|
</build> |
||||||
|
</project> |
@ -0,0 +1,29 @@ |
|||||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0" |
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||||
|
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>com.fr.third</groupId> |
||||||
|
<artifactId>base-third</artifactId> |
||||||
|
<version>${revision}</version> |
||||||
|
<properties> |
||||||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
||||||
|
<classes-path>G:\Code\10.0\feature-third-maven\base-third\base-third-project\</classes-path> |
||||||
|
<revision>10.0-FEATURE-SNAPSHOT</revision> |
||||||
|
<language-level>1.7</language-level> |
||||||
|
</properties> |
||||||
|
|
||||||
|
<modules> |
||||||
|
<module>base-third-step1</module> |
||||||
|
<module>base-third-step2</module> |
||||||
|
<module>base-third-step3</module> |
||||||
|
<module>base-third-step4</module> |
||||||
|
<module>base-third-step5</module> |
||||||
|
<module>base-third-step6</module> |
||||||
|
<module>base-third-step7</module> |
||||||
|
<module>base-third-step8</module> |
||||||
|
</modules> |
||||||
|
|
||||||
|
|
||||||
|
</project> |
@ -0,0 +1,6 @@ |
|||||||
|
*.iml |
||||||
|
.idea/ |
||||||
|
.DS_Store |
||||||
|
.project |
||||||
|
.classpath |
||||||
|
*.gradle |
@ -0,0 +1,6 @@ |
|||||||
|
*.iml |
||||||
|
.idea/ |
||||||
|
.DS_Store |
||||||
|
.project |
||||||
|
.classpath |
||||||
|
*.gradle |
@ -1,3 +1,6 @@ |
|||||||
.idea/ |
|
||||||
*.iml |
*.iml |
||||||
Classes/ |
.idea/ |
||||||
|
.DS_Store |
||||||
|
.project |
||||||
|
.classpath |
||||||
|
*.gradle |
@ -0,0 +1,6 @@ |
|||||||
|
*.iml |
||||||
|
.idea/ |
||||||
|
.DS_Store |
||||||
|
.project |
||||||
|
.classpath |
||||||
|
*.gradle |
@ -0,0 +1,6 @@ |
|||||||
|
*.iml |
||||||
|
.idea/ |
||||||
|
.DS_Store |
||||||
|
.project |
||||||
|
.classpath |
||||||
|
*.gradle |
@ -0,0 +1,6 @@ |
|||||||
|
*.iml |
||||||
|
.idea/ |
||||||
|
.DS_Store |
||||||
|
.project |
||||||
|
.classpath |
||||||
|
*.gradle |
@ -1,19 +1,18 @@ |
|||||||
<?xml version="1.0" encoding="UTF-8"?> |
<?xml version="1.0" encoding="UTF-8"?> |
||||||
<project xmlns = "http://maven.apache.org/POM/4.0.0" |
<project xmlns="http://maven.apache.org/POM/4.0.0" |
||||||
xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance" |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||||
xsi:schemaLocation = "http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
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> |
<modelVersion>4.0.0</modelVersion> |
||||||
|
|
||||||
<parent> |
<parent> |
||||||
<groupId>com.fr.third</groupId> |
<groupId>com.fr.third</groupId> |
||||||
<artifactId>base-third-code</artifactId> |
<artifactId>step1</artifactId> |
||||||
<version>10.0-RELEASE-SNAPSHOT</version> |
<version>${revision}</version> |
||||||
|
<relativePath>../base-third-project/base-third-step1</relativePath> |
||||||
</parent> |
</parent> |
||||||
|
|
||||||
|
|
||||||
<groupId>com.fr.third</groupId> |
|
||||||
<artifactId>fine-bouncycastle</artifactId> |
<artifactId>fine-bouncycastle</artifactId> |
||||||
<version>1.0-SNAPSHOT</version> |
<version>${revision}</version> |
||||||
|
|
||||||
|
|
||||||
</project> |
</project> |
@ -1,3 +1,6 @@ |
|||||||
.idea/ |
|
||||||
*.iml |
*.iml |
||||||
classes/ |
.idea/ |
||||||
|
.DS_Store |
||||||
|
.project |
||||||
|
.classpath |
||||||
|
*.gradle |
@ -0,0 +1,6 @@ |
|||||||
|
*.iml |
||||||
|
.idea/ |
||||||
|
.DS_Store |
||||||
|
.project |
||||||
|
.classpath |
||||||
|
*.gradle |
@ -0,0 +1,6 @@ |
|||||||
|
*.iml |
||||||
|
.idea/ |
||||||
|
.DS_Store |
||||||
|
.project |
||||||
|
.classpath |
||||||
|
*.gradle |
@ -0,0 +1,6 @@ |
|||||||
|
*.iml |
||||||
|
.idea/ |
||||||
|
.DS_Store |
||||||
|
.project |
||||||
|
.classpath |
||||||
|
*.gradle |
@ -0,0 +1,6 @@ |
|||||||
|
*.iml |
||||||
|
.idea/ |
||||||
|
.DS_Store |
||||||
|
.project |
||||||
|
.classpath |
||||||
|
*.gradle |
@ -0,0 +1,6 @@ |
|||||||
|
*.iml |
||||||
|
.idea/ |
||||||
|
.DS_Store |
||||||
|
.project |
||||||
|
.classpath |
||||||
|
*.gradle |
@ -0,0 +1,6 @@ |
|||||||
|
*.iml |
||||||
|
.idea/ |
||||||
|
.DS_Store |
||||||
|
.project |
||||||
|
.classpath |
||||||
|
*.gradle |
@ -0,0 +1,6 @@ |
|||||||
|
*.iml |
||||||
|
.idea/ |
||||||
|
.DS_Store |
||||||
|
.project |
||||||
|
.classpath |
||||||
|
*.gradle |
@ -0,0 +1,6 @@ |
|||||||
|
*.iml |
||||||
|
.idea/ |
||||||
|
.DS_Store |
||||||
|
.project |
||||||
|
.classpath |
||||||
|
*.gradle |
@ -0,0 +1,6 @@ |
|||||||
|
*.iml |
||||||
|
.idea/ |
||||||
|
.DS_Store |
||||||
|
.project |
||||||
|
.classpath |
||||||
|
*.gradle |
@ -0,0 +1,6 @@ |
|||||||
|
*.iml |
||||||
|
.idea/ |
||||||
|
.DS_Store |
||||||
|
.project |
||||||
|
.classpath |
||||||
|
*.gradle |
@ -0,0 +1,6 @@ |
|||||||
|
*.iml |
||||||
|
.idea/ |
||||||
|
.DS_Store |
||||||
|
.project |
||||||
|
.classpath |
||||||
|
*.gradle |
@ -0,0 +1,26 @@ |
|||||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0" |
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||||
|
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> |
||||||
|
|
||||||
|
<parent> |
||||||
|
<groupId>com.fr.third</groupId> |
||||||
|
<artifactId>step1</artifactId> |
||||||
|
<version>${revision}</version> |
||||||
|
<relativePath>../base-third-project/base-third-step1</relativePath> |
||||||
|
</parent> |
||||||
|
|
||||||
|
<artifactId>fine-cssparser</artifactId> |
||||||
|
<version>${revision}</version> |
||||||
|
|
||||||
|
<dependencies> |
||||||
|
<dependency> |
||||||
|
<groupId>com.fr.third</groupId> |
||||||
|
<artifactId>sac</artifactId> |
||||||
|
<version>local</version> |
||||||
|
<scope>system</scope> |
||||||
|
<systemPath>${basedir}/lib/sac-1.3.jar</systemPath> |
||||||
|
</dependency> |
||||||
|
</dependencies> |
||||||
|
</project> |
@ -1 +1,6 @@ |
|||||||
*.iml |
*.iml |
||||||
|
.idea/ |
||||||
|
.DS_Store |
||||||
|
.project |
||||||
|
.classpath |
||||||
|
*.gradle |
@ -0,0 +1,6 @@ |
|||||||
|
*.iml |
||||||
|
.idea/ |
||||||
|
.DS_Store |
||||||
|
.project |
||||||
|
.classpath |
||||||
|
*.gradle |
@ -0,0 +1,6 @@ |
|||||||
|
*.iml |
||||||
|
.idea/ |
||||||
|
.DS_Store |
||||||
|
.project |
||||||
|
.classpath |
||||||
|
*.gradle |
@ -0,0 +1,6 @@ |
|||||||
|
*.iml |
||||||
|
.idea/ |
||||||
|
.DS_Store |
||||||
|
.project |
||||||
|
.classpath |
||||||
|
*.gradle |
@ -0,0 +1,6 @@ |
|||||||
|
*.iml |
||||||
|
.idea/ |
||||||
|
.DS_Store |
||||||
|
.project |
||||||
|
.classpath |
||||||
|
*.gradle |
@ -0,0 +1,6 @@ |
|||||||
|
*.iml |
||||||
|
.idea/ |
||||||
|
.DS_Store |
||||||
|
.project |
||||||
|
.classpath |
||||||
|
*.gradle |
@ -0,0 +1,6 @@ |
|||||||
|
*.iml |
||||||
|
.idea/ |
||||||
|
.DS_Store |
||||||
|
.project |
||||||
|
.classpath |
||||||
|
*.gradle |
@ -0,0 +1,6 @@ |
|||||||
|
*.iml |
||||||
|
.idea/ |
||||||
|
.DS_Store |
||||||
|
.project |
||||||
|
.classpath |
||||||
|
*.gradle |
@ -0,0 +1,6 @@ |
|||||||
|
*.iml |
||||||
|
.idea/ |
||||||
|
.DS_Store |
||||||
|
.project |
||||||
|
.classpath |
||||||
|
*.gradle |
@ -0,0 +1,6 @@ |
|||||||
|
*.iml |
||||||
|
.idea/ |
||||||
|
.DS_Store |
||||||
|
.project |
||||||
|
.classpath |
||||||
|
*.gradle |
@ -0,0 +1,6 @@ |
|||||||
|
*.iml |
||||||
|
.idea/ |
||||||
|
.DS_Store |
||||||
|
.project |
||||||
|
.classpath |
||||||
|
*.gradle |
@ -0,0 +1,6 @@ |
|||||||
|
*.iml |
||||||
|
.idea/ |
||||||
|
.DS_Store |
||||||
|
.project |
||||||
|
.classpath |
||||||
|
*.gradle |
@ -0,0 +1,6 @@ |
|||||||
|
*.iml |
||||||
|
.idea/ |
||||||
|
.DS_Store |
||||||
|
.project |
||||||
|
.classpath |
||||||
|
*.gradle |
@ -0,0 +1,6 @@ |
|||||||
|
*.iml |
||||||
|
.idea/ |
||||||
|
.DS_Store |
||||||
|
.project |
||||||
|
.classpath |
||||||
|
*.gradle |
@ -0,0 +1,26 @@ |
|||||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0" |
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||||
|
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> |
||||||
|
|
||||||
|
<parent> |
||||||
|
<groupId>com.fr.third</groupId> |
||||||
|
<artifactId>step1</artifactId> |
||||||
|
<version>${revision}</version> |
||||||
|
<relativePath>../base-third-project/base-third-step1</relativePath> |
||||||
|
</parent> |
||||||
|
|
||||||
|
<artifactId>fine-jackson</artifactId> |
||||||
|
<version>${revision}</version> |
||||||
|
|
||||||
|
<dependencies> |
||||||
|
<dependency> |
||||||
|
<groupId>com.fr.third</groupId> |
||||||
|
<artifactId>hamcrest-core</artifactId> |
||||||
|
<version>local</version> |
||||||
|
<scope>system</scope> |
||||||
|
<systemPath>${basedir}/lib/hamcrest-core-1.3.jar</systemPath> |
||||||
|
</dependency> |
||||||
|
</dependencies> |
||||||
|
</project> |
@ -0,0 +1,6 @@ |
|||||||
|
*.iml |
||||||
|
.idea/ |
||||||
|
.DS_Store |
||||||
|
.project |
||||||
|
.classpath |
||||||
|
*.gradle |
@ -0,0 +1,6 @@ |
|||||||
|
*.iml |
||||||
|
.idea/ |
||||||
|
.DS_Store |
||||||
|
.project |
||||||
|
.classpath |
||||||
|
*.gradle |
@ -0,0 +1,6 @@ |
|||||||
|
*.iml |
||||||
|
.idea/ |
||||||
|
.DS_Store |
||||||
|
.project |
||||||
|
.classpath |
||||||
|
*.gradle |
@ -1 +1,6 @@ |
|||||||
*.iml |
*.iml |
||||||
|
.idea/ |
||||||
|
.DS_Store |
||||||
|
.project |
||||||
|
.classpath |
||||||
|
*.gradle |
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue