Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
T
traffic-front
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wangxiaoming
traffic-front
Commits
c547c5c9
Commit
c547c5c9
authored
Aug 14, 2018
by
neo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[dev] atms add multimoduel surpport
parent
9b7f8487
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
63 additions
and
68 deletions
+63
-68
pom.xml
atms-api/pom.xml
+6
-44
pom.xml
atms-web/pom.xml
+5
-24
pom.xml
pom.xml
+52
-0
No files found.
atms-api/pom.xml
View file @
c547c5c9
<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/maven-v4_0_0.xsd"
>
<modelVersion>
4.0.0
</modelVersion>
<groupId>
pwc.taxtech.atms
</groupId>
<artifactId>
atms-api
</artifactId>
<packaging>
war
</packaging>
<version>
0.1.1
</version>
<properties>
<maven.test.skip>
false
</maven.test.skip>
<maven.test.failure.ignore>
false
</maven.test.failure.ignore>
<java.version>
1.8
</java.version>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
<project.reporting.outputEncoding>
UTF-8
</project.reporting.outputEncoding>
<maven.compiler.source>
${java.version}
</maven.compiler.source>
<maven.compiler.target>
${java.version}
</maven.compiler.target>
<!-- hibernate versions starts -->
<!-- hibernate versions ends -->
<!-- cxf version -->
<spring.version>
4.3.13.RELEASE
</spring.version>
<thymeleaf.version>
3.0.9.RELEASE
</thymeleaf.version>
<database_driver_scope>
runtime
</database_driver_scope>
<maven.build.timestamp.format>
yyyy-MM-dd HH:mm:ss z
</maven.build.timestamp.format>
<timestamp>
${maven.build.timestamp}
</timestamp>
<sonar.exclusions>
**/*Mapper.*,**/*Example.*,**/*Test.java,**/*IT.java,**/*Dto.java,**/atms/entitiy/**/*.java,**/atms/thirdparty/**/*.java,**/atms/common/message/**/*.java,**/atms/dto/**/*.java,**/atms/constant/**/*.java
</sonar.exclusions>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>
org.springframework
</groupId>
<artifactId>
spring-framework-bom
</artifactId>
<version>
${spring.version}
</version>
<type>
pom
</type>
<scope>
import
</scope>
</dependency>
</dependencies>
</dependencyManagement>
<parent>
<groupId>
pwc.taxtech.atms
</groupId>
<artifactId>
atms
</artifactId>
<version>
0.1.1
</version>
</parent>
<dependencies>
<dependency>
...
...
@@ -351,17 +324,6 @@
<artifactId>
httpclient
</artifactId>
<version>
4.5.5
</version>
</dependency>
<!--<dependency>-->
<!--<groupId>org.eclipse.jetty.aggregate</groupId>-->
<!--<artifactId>jetty-all</artifactId>-->
<!--<version>9.4.10.v20180503</version>-->
<!--<type>pom</type>-->
<!--</dependency>-->
<!--<dependency>-->
<!--<groupId>org.eclipse.jetty</groupId>-->
<!--<artifactId>apache-jsp</artifactId>-->
<!--<version>9.4.10.v20180503</version>-->
<!--</dependency>-->
</dependencies>
<profiles>
...
...
atms-web/pom.xml
View file @
c547c5c9
...
...
@@ -6,30 +6,11 @@
<packaging>
war
</packaging>
<version>
0.1.1
</version>
<properties>
<maven.test.skip>
true
</maven.test.skip>
<java.version>
1.8
</java.version>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
<project.reporting.outputEncoding>
UTF-8
</project.reporting.outputEncoding>
<maven.compiler.source>
${java.version}
</maven.compiler.source>
<maven.compiler.target>
${java.version}
</maven.compiler.target>
<spring.version>
4.3.13.RELEASE
</spring.version>
<thymeleaf.version>
3.0.9.RELEASE
</thymeleaf.version>
<maven.build.timestamp.format>
yyyy-MM-dd HH:mm:ss z
</maven.build.timestamp.format>
<timestamp>
${maven.build.timestamp}
</timestamp>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>
org.springframework
</groupId>
<artifactId>
spring-framework-bom
</artifactId>
<version>
${spring.version}
</version>
<type>
pom
</type>
<scope>
import
</scope>
</dependency>
</dependencies>
</dependencyManagement>
<parent>
<groupId>
pwc.taxtech.atms
</groupId>
<artifactId>
atms
</artifactId>
<version>
0.1.1
</version>
</parent>
<dependencies>
<dependency>
...
...
pom.xml
0 → 100644
View file @
c547c5c9
<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/maven-v4_0_0.xsd"
>
<modelVersion>
4.0.0
</modelVersion>
<groupId>
pwc.taxtech.atms
</groupId>
<artifactId>
atms
</artifactId>
<packaging>
pom
</packaging>
<version>
0.1.1
</version>
<parent>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-parent
</artifactId>
<version>
2.0.3.RELEASE
</version>
</parent>
<modules>
<module>
atms-api
</module>
<module>
atms-web
</module>
</modules>
<properties>
<maven.test.skip>
false
</maven.test.skip>
<maven.test.failure.ignore>
false
</maven.test.failure.ignore>
<java.version>
1.8
</java.version>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
<project.reporting.outputEncoding>
UTF-8
</project.reporting.outputEncoding>
<maven.compiler.source>
${java.version}
</maven.compiler.source>
<maven.compiler.target>
${java.version}
</maven.compiler.target>
<spring.version>
4.3.13.RELEASE
</spring.version>
<thymeleaf.version>
3.0.9.RELEASE
</thymeleaf.version>
<database_driver_scope>
runtime
</database_driver_scope>
<maven.build.timestamp.format>
yyyy-MM-dd HH:mm:ss z
</maven.build.timestamp.format>
<timestamp>
${maven.build.timestamp}
</timestamp>
<sonar.exclusions>
**/*Mapper.*,**/*Example.*,**/*Test.java,**/*IT.java,**/*Dto.java,**/atms/entitiy/**/*.java,**/atms/thirdparty/**/*.java,**/atms/common/message/**/*.java,**/atms/dto/**/*.java,**/atms/constant/**/*.java
</sonar.exclusions>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>
org.springframework
</groupId>
<artifactId>
spring-framework-bom
</artifactId>
<version>
${spring.version}
</version>
<type>
pom
</type>
<scope>
import
</scope>
</dependency>
</dependencies>
</dependencyManagement>
</project>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment