forked from alibaba/COLA
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
608 additions
and
608 deletions.
There are no files selected for viewing
100 changes: 50 additions & 50 deletions
100
...a-archetype-service/src/main/resources/archetype-resources/__rootArtifactId__-app/pom.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,56 +1,56 @@ | ||
<?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/maven-v4_0_0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>${groupId}</groupId> | ||
<artifactId>${rootArtifactId}</artifactId> | ||
<version>${version}</version> | ||
<relativePath>../pom.xml</relativePath> | ||
</parent> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>${groupId}</groupId> | ||
<artifactId>${rootArtifactId}</artifactId> | ||
<version>${version}</version> | ||
<relativePath>../pom.xml</relativePath> | ||
</parent> | ||
|
||
<artifactId>${artifactId}</artifactId> | ||
<packaging>jar</packaging> | ||
<name>${artifactId}</name> | ||
<artifactId>${artifactId}</artifactId> | ||
<packaging>jar</packaging> | ||
<name>${artifactId}</name> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>${groupId}</groupId> | ||
<artifactId>${rootArtifactId}-client</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>${groupId}</groupId> | ||
<artifactId>${rootArtifactId}-infrastructure</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.alibaba.cola</groupId> | ||
<artifactId>cola-component-catchlog-starter</artifactId> | ||
</dependency> | ||
<!-- JSR 303 Validation --> | ||
<dependency> | ||
<groupId>org.hibernate.validator</groupId> | ||
<artifactId>hibernate-validator</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>javax.el</groupId> | ||
<artifactId>javax.el-api</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.glassfish.web</groupId> | ||
<artifactId>javax.el</artifactId> | ||
</dependency> | ||
<!-- JSR 303 Validation End--> | ||
</dependencies> | ||
<dependencies> | ||
<dependency> | ||
<groupId>${groupId}</groupId> | ||
<artifactId>${rootArtifactId}-client</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>${groupId}</groupId> | ||
<artifactId>${rootArtifactId}-infrastructure</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.alibaba.cola</groupId> | ||
<artifactId>cola-component-catchlog-starter</artifactId> | ||
</dependency> | ||
<!-- JSR 303 Validation --> | ||
<dependency> | ||
<groupId>org.hibernate.validator</groupId> | ||
<artifactId>hibernate-validator</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>javax.el</groupId> | ||
<artifactId>javax.el-api</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.glassfish.web</groupId> | ||
<artifactId>javax.el</artifactId> | ||
</dependency> | ||
<!-- JSR 303 Validation End--> | ||
</dependencies> | ||
|
||
<build> | ||
<pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-deploy-plugin</artifactId> | ||
<configuration> | ||
<skip>true</skip> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</pluginManagement> | ||
</build> | ||
<build> | ||
<pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-deploy-plugin</artifactId> | ||
<configuration> | ||
<skip>true</skip> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</pluginManagement> | ||
</build> | ||
</project> |
48 changes: 24 additions & 24 deletions
48
...rchetype-service/src/main/resources/archetype-resources/__rootArtifactId__-client/pom.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +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/maven-v4_0_0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>${groupId}</groupId> | ||
<artifactId>${rootArtifactId}</artifactId> | ||
<version>${version}</version> | ||
<relativePath>../pom.xml</relativePath> | ||
</parent> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>${groupId}</groupId> | ||
<artifactId>${rootArtifactId}</artifactId> | ||
<version>${version}</version> | ||
<relativePath>../pom.xml</relativePath> | ||
</parent> | ||
|
||
<artifactId>${artifactId}</artifactId> | ||
<packaging>jar</packaging> | ||
<name>${parentArtifactId}-client</name> | ||
<artifactId>${artifactId}</artifactId> | ||
<packaging>jar</packaging> | ||
<name>${parentArtifactId}-client</name> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>com.alibaba.cola</groupId> | ||
<artifactId>cola-component-dto</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.projectlombok</groupId> | ||
<artifactId>lombok</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>javax.validation</groupId> | ||
<artifactId>validation-api</artifactId> | ||
</dependency> | ||
</dependencies> | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.alibaba.cola</groupId> | ||
<artifactId>cola-component-dto</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.projectlombok</groupId> | ||
<artifactId>lombok</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>javax.validation</groupId> | ||
<artifactId>validation-api</artifactId> | ||
</dependency> | ||
</dependencies> | ||
</project> |
76 changes: 38 additions & 38 deletions
76
...rchetype-service/src/main/resources/archetype-resources/__rootArtifactId__-domain/pom.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,44 @@ | ||
<?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/maven-v4_0_0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>${groupId}</groupId> | ||
<artifactId>${rootArtifactId}</artifactId> | ||
<version>${version}</version> | ||
<relativePath>../pom.xml</relativePath> | ||
</parent> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>${groupId}</groupId> | ||
<artifactId>${rootArtifactId}</artifactId> | ||
<version>${version}</version> | ||
<relativePath>../pom.xml</relativePath> | ||
</parent> | ||
|
||
<artifactId>${artifactId}</artifactId> | ||
<packaging>jar</packaging> | ||
<name>${artifactId}</name> | ||
<artifactId>${artifactId}</artifactId> | ||
<packaging>jar</packaging> | ||
<name>${artifactId}</name> | ||
|
||
<dependencies> | ||
<!-- COLA components --> | ||
<dependency> | ||
<groupId>com.alibaba.cola</groupId> | ||
<artifactId>cola-component-domain-starter</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.alibaba.cola</groupId> | ||
<artifactId>cola-component-exception</artifactId> | ||
</dependency> | ||
<!-- COLA components End--> | ||
<dependency> | ||
<groupId>${groupId}</groupId> | ||
<artifactId>${rootArtifactId}-client</artifactId> | ||
</dependency> | ||
</dependencies> | ||
<dependencies> | ||
<!-- COLA components --> | ||
<dependency> | ||
<groupId>com.alibaba.cola</groupId> | ||
<artifactId>cola-component-domain-starter</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.alibaba.cola</groupId> | ||
<artifactId>cola-component-exception</artifactId> | ||
</dependency> | ||
<!-- COLA components End--> | ||
<dependency> | ||
<groupId>${groupId}</groupId> | ||
<artifactId>${rootArtifactId}-client</artifactId> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-deploy-plugin</artifactId> | ||
<configuration> | ||
<skip>true</skip> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</pluginManagement> | ||
</build> | ||
<build> | ||
<pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-deploy-plugin</artifactId> | ||
<configuration> | ||
<skip>true</skip> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</pluginManagement> | ||
</build> | ||
</project> |
64 changes: 32 additions & 32 deletions
64
...-service/src/main/resources/archetype-resources/__rootArtifactId__-infrastructure/pom.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,37 @@ | ||
<?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/maven-v4_0_0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>${groupId}</groupId> | ||
<artifactId>${rootArtifactId}</artifactId> | ||
<version>${version}</version> | ||
<relativePath>../pom.xml</relativePath> | ||
</parent> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>${groupId}</groupId> | ||
<artifactId>${rootArtifactId}</artifactId> | ||
<version>${version}</version> | ||
<relativePath>../pom.xml</relativePath> | ||
</parent> | ||
|
||
<artifactId>${artifactId}</artifactId> | ||
<packaging>jar</packaging> | ||
<name>${artifactId}</name> | ||
<artifactId>${artifactId}</artifactId> | ||
<packaging>jar</packaging> | ||
<name>${artifactId}</name> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>${groupId}</groupId> | ||
<artifactId>${rootArtifactId}-domain</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.mybatis.spring.boot</groupId> | ||
<artifactId>mybatis-spring-boot-starter</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>mysql</groupId> | ||
<artifactId>mysql-connector-java</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.alibaba</groupId> | ||
<artifactId>fastjson</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-test</artifactId> | ||
</dependency> | ||
</dependencies> | ||
<dependencies> | ||
<dependency> | ||
<groupId>${groupId}</groupId> | ||
<artifactId>${rootArtifactId}-domain</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.mybatis.spring.boot</groupId> | ||
<artifactId>mybatis-spring-boot-starter</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>mysql</groupId> | ||
<artifactId>mysql-connector-java</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.alibaba</groupId> | ||
<artifactId>fastjson</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-test</artifactId> | ||
</dependency> | ||
</dependencies> | ||
</project> |
Oops, something went wrong.