[jboss-dev-forums] [Design of JBoss Build System] - Re: Moving jbossas to a maven repo for thirdparty
scott.stark@jboss.org
do-not-reply at jboss.com
Sun Feb 24 21:10:09 EST 2008
So the mapping would be configured something like:
| <plugin>
| ...
| <configuration>
| <groupId>org.apache.maven.plugins</groupId>
| <artifactId>maven-compiler-plugin</artifactId>
| <dependencies>
| <dependency>
| <groupId>org.jboss</groupId>
| <artifactId>jboss-common-core</artifactId>
| <mapping>
| <groupId>org.jboss</groupId>
| <artifactId>jboss-common-core</artifactId>
| </mapping>
| </dependency>
| <dependency>
| <groupId>org.jboss.microcontainer</groupId
| <artifactId>jboss-aop-mc-int</artifactId>
| <mapping>
| <groupId>jboss.microcontainer</groupId>
| <artifactId>jboss-aop-mc-int</artifactId>
| </mapping>
| </dependency>
| <dependency>
| <groupId>org.jboss.microcontainer</groupId>
| <artifactId>jboss-dependency</artifactId>
| <mapping>
| <groupId>jboss.microcontainer</groupId>
| <artifactId>jboss-dependency</artifactId>
| </mapping>
| </dependency>
| ...
| <dependency>
| <groupId>jboss</groupId
| <artifactId>jboss-cache</artifactId>
| <mapping>
| <groupId>jboss.cache</groupId>
| <artifactId>jbosscache</artifactId>
| </mapping>
| </dependency>
| ...
| </dependencies>
| </configuration>
| </plugin>
|
the problem I still see are the artifacts not in maven. For example, the jboss repo for jboss/cache includes a jbosscache.jar & pojocache.jar. I don't see any pojo cache artifact in maven. I guess these will have to be added to maven. I would put out a list of these first so that we can start adding them.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4131727#4131727
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4131727
More information about the jboss-dev-forums
mailing list