|
|
@@ -15,6 +15,8 @@
|
|
|
<!-- FIXME change it to the project's website -->
|
|
|
<url>http://www.example.com</url>
|
|
|
|
|
|
+ <packaging>jar</packaging>
|
|
|
+
|
|
|
<properties>
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
<maven.compiler.source>1.7</maven.compiler.source>
|
|
|
@@ -32,51 +34,156 @@
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
<artifactId>fastjson</artifactId>
|
|
|
</dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.java110</groupId>
|
|
|
+ <artifactId>java110-config</artifactId>
|
|
|
+ <scope>provided</scope>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.java110</groupId>
|
|
|
+ <artifactId>java110-service</artifactId>
|
|
|
+
|
|
|
+ </dependency>
|
|
|
+ <!-- WICKET DEPENDENCIES -->
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-thymeleaf</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.thymeleaf</groupId>
|
|
|
+ <artifactId>thymeleaf</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.jsoup</groupId>
|
|
|
+ <artifactId>jsoup</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-websocket</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.activiti</groupId>
|
|
|
+ <artifactId>activiti-spring</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.quartz-scheduler</groupId>
|
|
|
+ <artifactId>quartz</artifactId>
|
|
|
+ <version>2.3.0</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
</dependencies>
|
|
|
|
|
|
<build>
|
|
|
- <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
|
|
|
- <plugins>
|
|
|
- <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
|
|
|
- <plugin>
|
|
|
- <artifactId>maven-clean-plugin</artifactId>
|
|
|
- <version>3.1.0</version>
|
|
|
- </plugin>
|
|
|
- <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
|
|
|
- <plugin>
|
|
|
- <artifactId>maven-resources-plugin</artifactId>
|
|
|
- <version>3.0.2</version>
|
|
|
- </plugin>
|
|
|
- <plugin>
|
|
|
- <artifactId>maven-compiler-plugin</artifactId>
|
|
|
- <version>3.8.0</version>
|
|
|
- </plugin>
|
|
|
- <plugin>
|
|
|
- <artifactId>maven-surefire-plugin</artifactId>
|
|
|
- <version>2.22.1</version>
|
|
|
- </plugin>
|
|
|
- <plugin>
|
|
|
- <artifactId>maven-jar-plugin</artifactId>
|
|
|
- <version>3.0.2</version>
|
|
|
- </plugin>
|
|
|
- <plugin>
|
|
|
- <artifactId>maven-install-plugin</artifactId>
|
|
|
- <version>2.5.2</version>
|
|
|
- </plugin>
|
|
|
- <plugin>
|
|
|
- <artifactId>maven-deploy-plugin</artifactId>
|
|
|
- <version>2.8.2</version>
|
|
|
- </plugin>
|
|
|
- <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
|
|
|
- <plugin>
|
|
|
- <artifactId>maven-site-plugin</artifactId>
|
|
|
- <version>3.7.1</version>
|
|
|
- </plugin>
|
|
|
- <plugin>
|
|
|
- <artifactId>maven-project-info-reports-plugin</artifactId>
|
|
|
- <version>3.0.0</version>
|
|
|
- </plugin>
|
|
|
- </plugins>
|
|
|
- </pluginManagement>
|
|
|
+ <finalName>service-simple</finalName>
|
|
|
+ <plugins>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-dependency-plugin</artifactId>
|
|
|
+ <version>2.10</version>
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <id>unpack</id>
|
|
|
+ <phase>generate-resources</phase>
|
|
|
+ <goals>
|
|
|
+ <goal>unpack</goal>
|
|
|
+ </goals>
|
|
|
+ <configuration>
|
|
|
+ <artifactItems>
|
|
|
+ <artifactItem>
|
|
|
+ <groupId>com.java110</groupId>
|
|
|
+ <artifactId>java110-config</artifactId>
|
|
|
+ <version>${microcommunity.version}</version>
|
|
|
+ <type>jar</type>
|
|
|
+ <overWrite>true</overWrite>
|
|
|
+ <outputDirectory>${project.build.directory}/classes</outputDirectory>
|
|
|
+ </artifactItem>
|
|
|
+ <artifactItem>
|
|
|
+ <groupId>com.java110</groupId>
|
|
|
+ <artifactId>service-front</artifactId>
|
|
|
+ <version>${microcommunity.version}</version>
|
|
|
+ <type>jar</type>
|
|
|
+ <overWrite>true</overWrite>
|
|
|
+ <outputDirectory>${project.build.directory}/classes</outputDirectory>
|
|
|
+ </artifactItem>
|
|
|
+ <artifactItem>
|
|
|
+ <groupId>com.java110</groupId>
|
|
|
+ <artifactId>service-job</artifactId>
|
|
|
+ <version>${microcommunity.version}</version>
|
|
|
+ <type>jar</type>
|
|
|
+ <overWrite>true</overWrite>
|
|
|
+ <outputDirectory>${project.build.directory}/classes</outputDirectory>
|
|
|
+ </artifactItem>
|
|
|
+
|
|
|
+ <artifactItem>
|
|
|
+ <groupId>com.java110</groupId>
|
|
|
+ <artifactId>service-order</artifactId>
|
|
|
+ <version>${microcommunity.version}</version>
|
|
|
+ <type>jar</type>
|
|
|
+ <overWrite>true</overWrite>
|
|
|
+ <outputDirectory>${project.build.directory}/classes</outputDirectory>
|
|
|
+ </artifactItem>
|
|
|
+ <artifactItem>
|
|
|
+ <groupId>com.java110</groupId>
|
|
|
+ <artifactId>service-store</artifactId>
|
|
|
+ <version>${microcommunity.version}</version>
|
|
|
+ <type>jar</type>
|
|
|
+ <overWrite>true</overWrite>
|
|
|
+ <outputDirectory>${project.build.directory}/classes</outputDirectory>
|
|
|
+ </artifactItem>
|
|
|
+ <artifactItem>
|
|
|
+ <groupId>com.java110</groupId>
|
|
|
+ <artifactId>service-user</artifactId>
|
|
|
+ <version>${microcommunity.version}</version>
|
|
|
+ <type>jar</type>
|
|
|
+ <overWrite>true</overWrite>
|
|
|
+ <outputDirectory>${project.build.directory}/classes</outputDirectory>
|
|
|
+ </artifactItem>
|
|
|
+ <artifactItem>
|
|
|
+ <groupId>com.java110</groupId>
|
|
|
+ <artifactId>service-common</artifactId>
|
|
|
+ <version>${microcommunity.version}</version>
|
|
|
+ <type>jar</type>
|
|
|
+ <overWrite>true</overWrite>
|
|
|
+ <outputDirectory>${project.build.directory}/classes</outputDirectory>
|
|
|
+ </artifactItem>
|
|
|
+ <artifactItem>
|
|
|
+ <groupId>com.java110</groupId>
|
|
|
+ <artifactId>service-community</artifactId>
|
|
|
+ <version>${microcommunity.version}</version>
|
|
|
+ <type>jar</type>
|
|
|
+ <overWrite>true</overWrite>
|
|
|
+ <outputDirectory>${project.build.directory}/classes</outputDirectory>
|
|
|
+ </artifactItem>
|
|
|
+ <artifactItem>
|
|
|
+ <groupId>com.java110</groupId>
|
|
|
+ <artifactId>service-api</artifactId>
|
|
|
+ <version>${microcommunity.version}</version>
|
|
|
+ <type>jar</type>
|
|
|
+ <overWrite>true</overWrite>
|
|
|
+ <outputDirectory>${project.build.directory}/classes</outputDirectory>
|
|
|
+ </artifactItem>
|
|
|
+ <artifactItem>
|
|
|
+ <groupId>com.java110</groupId>
|
|
|
+ <artifactId>service-fee</artifactId>
|
|
|
+ <version>${microcommunity.version}</version>
|
|
|
+ <type>jar</type>
|
|
|
+ <overWrite>true</overWrite>
|
|
|
+ <outputDirectory>${project.build.directory}/classes</outputDirectory>
|
|
|
+ </artifactItem>
|
|
|
+ </artifactItems>
|
|
|
+ </configuration>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
+ </plugin>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
+ <configuration>
|
|
|
+ <mainClass>com.java110.generator.GeneratorServiceApplicationStart</mainClass>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+ </plugins>
|
|
|
</build>
|
|
|
</project>
|