You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@chemistry.apache.org by je...@apache.org on 2011/11/02 09:52:26 UTC

svn commit: r1196508 - /chemistry/playground/moreq2010/moreq2010/pom.xml

Author: jens
Date: Wed Nov  2 08:52:26 2011
New Revision: 1196508

URL: http://svn.apache.org/viewvc?rev=1196508&view=rev
Log:
add pom.xml

Added:
    chemistry/playground/moreq2010/moreq2010/pom.xml

Added: chemistry/playground/moreq2010/moreq2010/pom.xml
URL: http://svn.apache.org/viewvc/chemistry/playground/moreq2010/moreq2010/pom.xml?rev=1196508&view=auto
==============================================================================
--- chemistry/playground/moreq2010/moreq2010/pom.xml (added)
+++ chemistry/playground/moreq2010/moreq2010/pom.xml Wed Nov  2 08:52:26 2011
@@ -0,0 +1,144 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+    <!--
+        Licensed under the Apache License, Version 2.0 (the "License");
+        you may not use this file except in compliance with the License.
+        You may obtain a copy of the License at
+        http://www.apache.org/licenses/LICENSE-2.0 Unless required by
+        applicable law or agreed to in writing, software distributed
+        under the License is distributed on an "AS IS" BASIS, WITHOUT
+        WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+        See the License for the specific language governing permissions
+        and limitations under the License.
+    -->
+
+<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>
+ <!--
+    <parent>
+        <groupId>org.apache.chemistry.moreq2010</groupId>
+        <artifactId>chemistry-opencmis</artifactId>
+        <version>0.6.0-SNAPSHOT</version>
+        <relativePath>../../pom.xml</relativePath>
+    </parent>
+-->    
+	<groupId>org.apache.chemistry.moreq2010</groupId>
+    <artifactId>chemistry-moreq2010-impl</artifactId>
+	<version>0.0.1-SNAPSHOT</version>
+    <name>Chenistry Moreq2010 Implementation</name>
+    <packaging>jar</packaging>
+
+    <properties>
+ <!--
+        <parentBasedir>../../</parentBasedir>
+-->
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+        <maven.compile.source>1.6</maven.compile.source>
+        <maven.compile.target>1.6</maven.compile.target>
+    </properties>
+     
+    <dependencies>
+ <!--
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>chemistry-opencmis-commons-api</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>com.sun.xml.ws</groupId>
+            <artifactId>jaxws-rt</artifactId>
+            <version>2.1.7</version>
+            <scope>compile</scope>
+        </dependency>
+-->
+		<dependency>
+			<groupId>javax.xml.bind</groupId>
+			<artifactId>jaxb-api</artifactId>
+			<version>2.0</version>
+		</dependency>
+		<dependency>
+    		<groupId>commons-logging</groupId>
+    		<artifactId>commons-logging</artifactId>
+    		<version>1.1.1</version>
+		</dependency>
+        <dependency>
+            <groupId>log4j</groupId>
+            <artifactId>log4j</artifactId>
+            <version>1.2.16</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.chemistry.opencmis</groupId>
+            <artifactId>chemistry-opencmis-client-impl</artifactId>
+            <version>LATEST</version>
+        </dependency>
+    </dependencies>
+    
+<!--    
+    <repositories>
+        <repository>
+            <id>jboss.public</id>
+            <name>JBoss repository (for JAX-WS 2.1.7)</name>
+            <url>http://repository.jboss.org/nexus/content/groups/public/</url>
+        </repository>
+        <repository>
+            <id>maven2-repository.dev.java.net</id>
+            <name>Java.net Repository for Maven 2</name>
+            <url>http://download.java.net/maven/2/</url>
+        </repository>
+    </repositories>
+-->
+    
+    <build>
+        <plugins>
+			 <plugin>
+				<groupId>com.sun.tools.xjc.maven2</groupId>
+				<artifactId>maven-jaxb-plugin</artifactId>
+				<executions>
+					<execution>
+						<goals>
+							<goal>generate</goal>
+						</goals>
+					</execution>
+				</executions>
+				<configuration>
+					<generatePackage>org.apache.chemistry.moreq2010.jaxb</generatePackage>
+					<includeSchemas>
+						<includeSchema>export.xsd</includeSchema>
+					</includeSchemas>		
+					<includeBindings>
+						<includeBinding>*.xjb</includeBinding>
+					</includeBindings>					
+					<strict>true</strict>
+					<verbose>true</verbose>
+					</configuration>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-compiler-plugin</artifactId>
+				<configuration>
+					<source>1.6</source>
+					<target>1.6</target>
+				</configuration>
+			</plugin>
+            <plugin>
+                <artifactId>maven-eclipse-plugin</artifactId>
+                <version>2.8</version>
+                <configuration>
+                    <downloadSources>true</downloadSources>
+                    <downloadJavadocs>true</downloadJavadocs>
+                    <workspace>.</workspace>
+                </configuration>
+            </plugin>
+            <plugin>
+                <artifactId>maven-jar-plugin</artifactId>
+                <configuration>
+                    <archive>  
+                        <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
+                    </archive> 
+                </configuration>
+            </plugin>  
+        </plugins>
+    </build>
+
+</project>