forked from wisdom-framework/wisdom
-
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.
Fixes wisdom-framework#171 by rewriting the pom organisation.
Building wisdom is now a three-step build : 1 - Go into your wisdom/wisdom-framework folder and "mvn install". It will build wisdom framework base pom. This pom is used by both core and components, and define common dependencies, and so on 2 - Go into your wisdom/core folder and "mvn install". it will build wisdom core (and the in-famous maven plugin) 3 - Then go into wisdom/components subfolder and "mvn install". it will build framework, extensions and documentation-base (in this order) How release work ? Well, exactly the same way, excpeted one also need to change reference to wisdom-framework parent pom in core and components poms before trying to release them. Having no experience of such a splitted release with git, I don't know which form the tags/branchs will take .. However, i think it is by far simpler than current build process. in fact, the only thing missing would be a shortcut in root folder allowing one to call all three maven builds.
- Loading branch information
Riduidel
committed
Apr 18, 2014
1 parent
f2491b6
commit f17175b
Showing
28 changed files
with
290 additions
and
105 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
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,58 @@ | ||
<?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>org.wisdom-framework</groupId> | ||
<artifactId>wisdom-framework</artifactId> | ||
<version>0.5-SNAPSHOT</version> | ||
<relativePath>../pom.xml</relativePath> | ||
</parent> | ||
|
||
<groupId>org.wisdom-framework</groupId> | ||
<artifactId>core</artifactId> | ||
<version>0.5-SNAPSHOT</version> | ||
|
||
<packaging>pom</packaging> | ||
|
||
<licenses> | ||
<license> | ||
<name>Apache License 2.0</name> | ||
<url>http://www.apache.org/licenses/LICENSE-2.0</url> | ||
</license> | ||
</licenses> | ||
|
||
<scm> | ||
<url>https://github.com/wisdom-framework/wisdom/core/</url> | ||
<connection>scm:git:[email protected]:wisdom-framework/wisdom.git</connection> | ||
<developerConnection>scm:git:[email protected]:wisdom-framework/wisdom.git</developerConnection> | ||
</scm> | ||
|
||
<inceptionYear>2013</inceptionYear> | ||
|
||
<issueManagement> | ||
<system>github</system> | ||
<url>https://github.com/wisdom-framework/wisdom/issues</url> | ||
</issueManagement> | ||
|
||
<organization> | ||
<name>Wisdom Framework</name> | ||
<url>http://wisdom-framework.org</url> | ||
</organization> | ||
|
||
<modules> | ||
<module>wisdom-api</module> | ||
<module>wisdom-maven-plugin</module> | ||
<module>wisdom-test</module> | ||
<module>wisdom-ipojo-module</module> | ||
|
||
<module>wisdom-engine</module> | ||
<module>application-configuration</module> | ||
<module>content-manager</module> | ||
<module>router</module> | ||
<module>crypto</module> | ||
<module>akka-system</module> | ||
<module>wisdom-base-runtime</module> | ||
</modules> | ||
</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
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
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
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,48 @@ | ||
<?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>org.wisdom-framework</groupId> | ||
<artifactId>wisdom-components</artifactId> | ||
<version>0.5-SNAPSHOT</version> | ||
<relativePath>../wisdom-components/pom.xml</relativePath> | ||
</parent> | ||
|
||
<groupId>org.wisdom-framework</groupId> | ||
<artifactId>documentation-base</artifactId> | ||
<version>0.5-SNAPSHOT</version> | ||
|
||
<packaging>pom</packaging> | ||
|
||
<licenses> | ||
<license> | ||
<name>Apache License 2.0</name> | ||
<url>http://www.apache.org/licenses/LICENSE-2.0</url> | ||
</license> | ||
</licenses> | ||
|
||
<scm> | ||
<url>https://github.com/wisdom-framework/wisdom/documentation/</url> | ||
<connection>scm:git:[email protected]:wisdom-framework/wisdom.git</connection> | ||
<developerConnection>scm:git:[email protected]:wisdom-framework/wisdom.git</developerConnection> | ||
</scm> | ||
|
||
<inceptionYear>2013</inceptionYear> | ||
|
||
<issueManagement> | ||
<system>github</system> | ||
<url>https://github.com/wisdom-framework/wisdom/issues</url> | ||
</issueManagement> | ||
|
||
<organization> | ||
<name>Wisdom Framework</name> | ||
<url>http://wisdom-framework.org</url> | ||
</organization> | ||
|
||
<modules> | ||
<module>documentation</module> | ||
<module>samples</module> | ||
</modules> | ||
</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
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,48 @@ | ||
<?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>org.wisdom-framework</groupId> | ||
<artifactId>wisdom-components</artifactId> | ||
<version>0.5-SNAPSHOT</version> | ||
<relativePath>../wisdom-components/pom.xml</relativePath> | ||
</parent> | ||
|
||
<groupId>org.wisdom-framework</groupId> | ||
<artifactId>extensions</artifactId> | ||
<version>0.5-SNAPSHOT</version> | ||
|
||
<packaging>pom</packaging> | ||
|
||
<licenses> | ||
<license> | ||
<name>Apache License 2.0</name> | ||
<url>http://www.apache.org/licenses/LICENSE-2.0</url> | ||
</license> | ||
</licenses> | ||
|
||
<scm> | ||
<url>https://github.com/wisdom-framework/wisdom/framework/</url> | ||
<connection>scm:git:[email protected]:wisdom-framework/wisdom.git</connection> | ||
<developerConnection>scm:git:[email protected]:wisdom-framework/wisdom.git</developerConnection> | ||
</scm> | ||
|
||
<inceptionYear>2013</inceptionYear> | ||
|
||
<issueManagement> | ||
<system>github</system> | ||
<url>https://github.com/wisdom-framework/wisdom/issues</url> | ||
</issueManagement> | ||
|
||
<organization> | ||
<name>Wisdom Framework</name> | ||
<url>http://wisdom-framework.org</url> | ||
</organization> | ||
|
||
<modules> | ||
<module>wisdom-asciidoc-maven-plugin</module> | ||
<module>wisdom-monitor</module> | ||
</modules> | ||
</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
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
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
Oops, something went wrong.