Thanks Christian On Sun, Jun 15, 2008 at 4:28 PM, Christian Schneider < [EMAIL PROTECTED]> wrote:
> Maven has moved out of incubator status. I have attached a pom that shows > how you can access cxf 2.1. > I still have the incubating repo in my pom. But it is not necessary for cxf > anymore. > You find the cxf 2.1 jars in the standard repo > http://repo1.maven.org/maven2. > > Greetings > > Christian > > Mohammad Shamsi schrieb: > >> Hi, >> >> I just found cxf 2.0.4-incubator in maven repositories, how can i access >> 2.1 with maven 2 ? >> >> >> > <repositories> > <repository> > <id>apache.incubating.releases</id> > <name>Apache Incubating Release Distribution Repository</name> > <url>http://people.apache.org/repo/m2-incubating-repository > </url> > </repository> > </repositories> > <properties> > <cxf.version>2.1</cxf.version> > </properties> > <dependencies> > <dependency> > <groupId>log4j</groupId> > <artifactId>log4j</artifactId> > <version>1.2.14</version> > </dependency> > <dependency> > <groupId>junit</groupId> > <artifactId>junit</artifactId> > <version>3.8.2</version> > <scope>test</scope> > </dependency> > <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.apache.cxf</groupId> > <artifactId>cxf-tools-common</artifactId> > <version>${cxf.version}</version> > </dependency> > <dependency> > <groupId>org.mortbay.jetty</groupId> > <artifactId>jetty</artifactId> > <version>6.1.6</version> > </dependency> > </dependencies> > > -- sincerely yours M. H. Shamsi
