OW2 Consortium aspire

Compare Revisions

Ignore whitespace Rev 969 → Rev 970

/branches/New-OSGi-Modules-Incubation/org.ow2.aspirerfid.ale/pom.xml
33,8 → 33,10
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.build.skipTests>true</project.build.skipTests>
<felix.version>4.0.2</felix.version>
<cxf.version>2.2.6</cxf.version>
<cxf.version>2.0.2-incubator</cxf.version><!--2.2.6-->
<spring.version>2.0.6</spring.version>
 
</properties>
 
 
55,14 → 57,14
 
<!-- Required for the OSGi bundalization of the projects -->
 
<!--
 
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.osgi.core</artifactId>
<version>1.2.0</version>
<type>bundle</type>
</dependency>
-->
<!--
<dependency>
<groupId>junit</groupId>
89,7 → 91,7
 
 
<!-- ======== CXF Dependencies ========== -->
 
<!--
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
105,20 → 107,186
<artifactId>cxf-rt-databinding-jaxb</artifactId>
<version>${cxf.version}</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
<version>${cxf.version}</version>
</dependency>
-->
<!-- Jetty is needed if the CXFServlet is not used-->
<dependency>
<!--
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
<version>${cxf.version}</version>
</dependency>
-->
 
<!-- Spring is directly included to override the version 2.0.4 cxf brings -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>${spring.version}</version>
</dependency>
<!--
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.14</version>
</dependency>
-->
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-core</artifactId>
<version>4.1.1</version>
</dependency>
<!-- Depending on your requirements you may need more or less modules from cxf. To make the start easier there are
some more listed than you need for this example. -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-core</artifactId>
<version>${cxf.version}</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-simple</artifactId>
<version>${cxf.version}</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
<version>${cxf.version}</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-databinding-aegis</artifactId>
<version>${cxf.version}</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-local</artifactId>
<version>${cxf.version}</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
<version>${cxf.version}</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
<version>${cxf.version}</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-jms</artifactId>
<version>${cxf.version}</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-management</artifactId>
<version>${cxf.version}</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-common-utilities</artifactId>
<version>${cxf.version}</version>
</dependency>
 
<dependency>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty</artifactId>
<version>6.1.5</version>
</dependency>
 
 
<!--
 
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-api</artifactId>
<version>2.0.6</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-bindings-soap</artifactId>
<version>2.0.6</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-bindings-xml</artifactId>
<version>2.0.6</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
<version>2.0.6</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-simple</artifactId>
<version>2.0.6</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
<version>2.0.6</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
<version>2.0.6</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
 
-->
 
 
 
 
 
 
 
 
 
 
</dependencies>
 
 
247,16 → 415,38
<!-- =========================================================== -->
 
<repositories>
 
<!--
<repository>
<id>central</id>
<name>Default maven repo</name>
<url>http://repo1.maven.org/maven2</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
-->
<!--
<repository>
-->
<!-- for getting the jta libraries -->
<!--
<id>sun-maven2</id>
<name>Sun Maven 2 Repository</name>
<url>http://download.java.net/maven/2</url>
</repository>
-->
<!--
<repository>
-->
<!-- for getting the jaxb libraries -->
<!--
<id>sun-maven1</id>
<name>java.net Maven Repository</name>
<url>http://download.java.net/maven/1</url>
267,9 → 457,14
<name>ibiblio Maven Repository</name>
<url>http://www.ibiblio.org/maven</url>
</repository>
-->
<!--
<repository>
-->
<!-- for getting the cxf libraries -->
<repository>
<id>apache-incubating</id>
<name>Apache Incubating Repository</name>
<url>http://people.apache.org/repo/m2-incubating-repository</url>
309,6 → 504,7
-->
<!-- for getting Fosstrak TDT artifact -->
<repository>
<releases>
<enabled>true</enabled>
320,11 → 516,15
</snapshots>
<id>fosstrak-repository</id>
<name>Fosstrak repository</name>
<url>http://maven-repository.fosstrak.org/releases</url>
<url>https://oss.sonatype.org/content/repositories/public/org/fosstrak/</url>
<layout>default</layout>
</repository>
 
<!-- SpringSource Enterprise Bundle Repository -->
<repository>
<id>com.springsource.repository.bundles.release</id>
<name>SpringSource Enterprise Bundle Repository - SpringSource Bundle Releases</name>