Author: jens
Date: Fri Dec 3 14:40:10 2010
New Revision: 1041841
URL: http://svn.apache.org/viewvc?rev=1041841&view=rev
Log:
restructure source code so that it follows project conventions
Added:
incubator/chemistry/playground/chemistry-opencmis-orderlyvalidator/pom.xml
Removed:
incubator/chemistry/playground/chemistry-opencmis-orderlyvalidator/.classpath
incubator/chemistry/playground/chemistry-opencmis-orderlyvalidator/.project
Added:
incubator/chemistry/playground/chemistry-opencmis-orderlyvalidator/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/chemistry/playground/chemistry-opencmis-orderlyvalidator/pom.xml?rev=1041841&view=auto
==============================================================================
--- incubator/chemistry/playground/chemistry-opencmis-orderlyvalidator/pom.xml
(added)
+++ incubator/chemistry/playground/chemistry-opencmis-orderlyvalidator/pom.xml
Fri Dec 3 14:40:10 2010
@@ -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</groupId>
+ <artifactId>apache</artifactId>
+ <version>7</version>
+ </parent>
+
+ <groupId>org.apache.chemistry.opencmis</groupId>
+ <version>0.2.0-incubating-SNAPSHOT</version>
+ <artifactId>chemistry-opencmis-orderlyvalidator</artifactId>
+ <name>OpenCMIS Orderly Validator</name>
+ <packaging>jar</packaging>
+
+ <properties>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ <maven.compile.source>1.5</maven.compile.source>
+ <maven.compile.target>1.5</maven.compile.target>
+
<docs.start.url>http://incubator.apache.org/chemistry/index.html</docs.start.url>
+
<docs.download.directory>${project.build.directory}/site</docs.download.directory>
+ </properties>
+
+ <build>
+ <resources>
+ <resource>
+ <directory>target/generated-resources</directory>
+ </resource>
+ </resources>
+ <plugins>
+ <plugin>
+ <inherited>true</inherited>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <target>${maven.compile.target}</target>
+ <source>${maven.compile.source}</source>
+ <encoding>UTF-8</encoding>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-eclipse-plugin</artifactId>
+ <configuration>
+ <downloadSources>true</downloadSources>
+ <downloadJavadocs>true</downloadJavadocs>
+ <workspace>..</workspace>
+ </configuration>
+ </plugin>
+ <plugin>
+ <inherited>true</inherited>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <target>${maven.compile.target}</target>
+ <source>${maven.compile.source}</source>
+ <encoding>UTF-8</encoding>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-eclipse-plugin</artifactId>
+ <configuration>
+ <downloadSources>true</downloadSources>
+ <downloadJavadocs>true</downloadJavadocs>
+ <workspace>..</workspace>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.antlr</groupId>
+ <artifactId>antlr3-maven-plugin</artifactId>
+ <executions>
+ <execution>
+ <!-- default phase: process-sources -->
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>antlr</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <version>2.2</version>
+ <configuration>
+ <descriptorRefs>
+
<descriptorRef>jar-with-dependencies</descriptorRef>
+ </descriptorRefs>
+ <finalName>OrderlyValidator</finalName>
+
<appendAssemblyId>false</appendAssemblyId>
+ <archive>
+ <manifest>
+
<mainClass>org.apache.chemistry.opencmis.orderly.validate.Validator</mainClass>
+ </manifest>
+ </archive>
+ </configuration>
+ <executions>
+ <execution>
+ <id>make-assembly</id> <!--
this is used for inheritance merges -->
+ <phase>package</phase> <!--
append to the packaging phase. -->
+ <goals>
+ <goal>single</goal>
<!-- goals == mojos -->
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+
+ <dependencies>
+ <dependency>
+ <groupId>eu.vahlas.json.schema</groupId>
+ <artifactId>json-schema-validator</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ </dependency>
+ <dependency>
+ <groupId>org.antlr</groupId>
+ <artifactId>antlr-runtime</artifactId>
+ <version>3.2</version>
+ </dependency>
+<!--
+ <dependency>
+ <groupId>org.codehaus.jackson</groupId>
+ <artifactId>jackson-core-asl</artifactId>
+ <version>1.5.6</version>
+ <type>jar</type>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.codehaus.jackson</groupId>
+ <artifactId>jackson-mapper-asl</artifactId>
+ <version>1.5.6</version>
+ <type>jar</type>
+ <scope>compile</scope>
+ </dependency>
+-->
+ </dependencies>
+</project>