Skip to content

Commit

Permalink
use .all for artifactId, not just name; add bootstrap profile; tweak …
Browse files Browse the repository at this point in the history
….gitignore
  • Loading branch information
nickboldt committed Oct 23, 2012
1 parent a42aa25 commit 4676bcb
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 7 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
target
*.class
2 changes: 1 addition & 1 deletion features/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.jboss.tools</groupId>
<artifactId>birt</artifactId>
<artifactId>birt.all</artifactId>
<version>1.4.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.birt</groupId>
Expand Down
2 changes: 1 addition & 1 deletion plugins/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.jboss.tools</groupId>
<artifactId>birt</artifactId>
<artifactId>birt.all</artifactId>
<version>1.4.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.birt</groupId>
Expand Down
13 changes: 10 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,22 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
<relativePath>../build/parent/pom.xml</relativePath>
</parent>
<groupId>org.jboss.tools</groupId>
<artifactId>birt</artifactId>
<name>birt.all</name>
<artifactId>birt.all</artifactId>
<version>1.4.0-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<module>features</module>
<module>plugins</module>
<module>tests</module>
<module>features</module>
<module>site</module>
</modules>
<profiles>
<profile>
<id>bootstrap</id>
<modules>
<module>../base</module>
</modules>
</profile>
</profiles>
</project>

2 changes: 1 addition & 1 deletion site/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.jboss.tools</groupId>
<artifactId>birt</artifactId>
<artifactId>birt.all</artifactId>
<version>1.4.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.birt</groupId>
Expand Down
2 changes: 1 addition & 1 deletion tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.jboss.tools</groupId>
<artifactId>birt</artifactId>
<artifactId>birt.all</artifactId>
<version>1.4.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.birt</groupId>
Expand Down

0 comments on commit 4676bcb

Please sign in to comment.