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.
chore: add dummy aggregation parent pom for development alibaba#223
simplify the development process for all cola modules including examples modules, e.g. - maven test/install - import to IDE
- Loading branch information
Showing
4 changed files
with
51 additions
and
8 deletions.
There are no files selected for viewing
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
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
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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<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> | ||
|
||
<!-- | ||
a dummy aggregation parent pom for development. | ||
simplify the development process for all cola modules including examples modules, e.g. | ||
- maven test/install | ||
- import to IDE | ||
--> | ||
<groupId>com.alibaba.cola</groupId> | ||
<artifactId>cola-dummy-aggregation-parent</artifactId> | ||
<version>dummy</version> | ||
<packaging>pom</packaging> | ||
|
||
<modules> | ||
<module>cola-components</module> | ||
<module>cola-archetypes</module> | ||
|
||
<module>samples/craftsman</module> | ||
</modules> | ||
|
||
<properties> | ||
<!-- | ||
skip maven deploy for cola-dump-aggregation-parent | ||
https://maven.apache.org/plugins/maven-deploy-plugin/deploy-mojo.html#skip | ||
--> | ||
<maven.deploy.skip>true</maven.deploy.skip> | ||
</properties> | ||
</project> |
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