Skip to content

Commit

Permalink
Merge branch 'SOLDER-20'
Browse files Browse the repository at this point in the history
  • Loading branch information
mojavelinux committed Dec 17, 2010
2 parents 8f847fc + 4f00d41 commit 3b01b9c
Show file tree
Hide file tree
Showing 168 changed files with 117 additions and 0 deletions.
105 changes: 105 additions & 0 deletions api/pom.xml
@@ -0,0 +1,105 @@
<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>
<groupId>org.jboss.seam.solder</groupId>
<artifactId>seam-solder-api</artifactId>
<packaging>jar</packaging>
<version>1.0.0-SNAPSHOT</version>

<parent>
<groupId>org.jboss.seam.solder</groupId>
<artifactId>seam-solder-parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<name>Seam Solder API</name>
<url>http://seamframework.org/Seam3/Solder</url>

<description>Portable extensions for CDI</description>

<issueManagement>
<system>JIRA</system>
<url>https://jira.jboss.org/browse/SOLDER</url>
</issueManagement>

<licenses>
<license>
<name>Apache License, Version 2.0</name>
<distribution>repo</distribution>
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
</license>
</licenses>

<developers>

<developer>
<name>Pete Muir</name>
<email>pete.muir@jboss.org</email>
<organization>Red Hat Inc.</organization>
<url>http://in.relation.to/Bloggers/Pete</url>
</developer>

<developer>
<name>Stuart Douglas</name>
</developer>

</developers>

<inceptionYear>2008</inceptionYear>

<organization>
<name>Seam Framework</name>
<url>http://seamframework.org</url>
</organization>

<ciManagement>
<system>Hudson</system>
<url />
</ciManagement>

<dependencies>

<dependency>
<groupId>javax.enterprise</groupId>
<artifactId>cdi-api</artifactId>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.jboss.logging</groupId>
<artifactId>jboss-logging</artifactId>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>javax.el</groupId>
<artifactId>el-api</artifactId>
<scope>provided</scope>
</dependency>

</dependencies>

<build>
<plugins>
<!--
skip unit test run, tests to be executed during
integration-test
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>

</plugins>
</build>

</project>
5 changes: 5 additions & 0 deletions impl/pom.xml
Expand Up @@ -58,6 +58,11 @@
</ciManagement>

<dependencies>

<dependency>
<groupId>org.jboss.seam.solder</groupId>
<artifactId>seam-solder-api</artifactId>
</dependency>

<dependency>
<groupId>org.javassist</groupId>
Expand Down
7 changes: 7 additions & 0 deletions pom.xml
Expand Up @@ -15,6 +15,7 @@
<url>http://seamframework.org/Seam3/Solder</url>

<modules>
<module>api</module>
<module>impl</module>
</modules>

Expand Down Expand Up @@ -115,6 +116,12 @@
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>org.jboss.seam.solder</groupId>
<artifactId>seam-solder-api</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
Expand Down

0 comments on commit 3b01b9c

Please sign in to comment.