diff options
author | rfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68> | 2011-09-01 16:26:14 +0000 |
---|---|---|
committer | rfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68> | 2011-09-01 16:26:14 +0000 |
commit | 7ef49221db3c5ad0db78f2c781ad27eeced1a556 (patch) | |
tree | 714ecbd0e644a8ff8245dce303f4c0250c287e1b /collaboration/GSoC-2011-Nirmal | |
parent | dba3710e8ed5c40e17ec28f21bfa5c6cb0645fdb (diff) |
Fix the main class
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1164136 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'collaboration/GSoC-2011-Nirmal')
-rw-r--r-- | collaboration/GSoC-2011-Nirmal/CompositeDiagramGeneratorUsingBatik/pom.xml | 102 |
1 files changed, 52 insertions, 50 deletions
diff --git a/collaboration/GSoC-2011-Nirmal/CompositeDiagramGeneratorUsingBatik/pom.xml b/collaboration/GSoC-2011-Nirmal/CompositeDiagramGeneratorUsingBatik/pom.xml index 0d4b58de28..9882f288ed 100644 --- a/collaboration/GSoC-2011-Nirmal/CompositeDiagramGeneratorUsingBatik/pom.xml +++ b/collaboration/GSoC-2011-Nirmal/CompositeDiagramGeneratorUsingBatik/pom.xml @@ -26,66 +26,66 @@ <dependencies> <dependency> - <groupId>org.apache.xmlgraphics</groupId> + <groupId>org.apache.xmlgraphics</groupId> <artifactId>batik-anim</artifactId> - <version>1.7</version> - </dependency> + <version>1.7</version> + </dependency> - <dependency> - <groupId>org.apache.xmlgraphics</groupId> + <dependency> + <groupId>org.apache.xmlgraphics</groupId> <artifactId>batik-awt-util</artifactId> <version>1.7</version> </dependency> - <dependency> + <dependency> <groupId>org.apache.xmlgraphics</groupId> <artifactId>batik-css</artifactId> <version>1.7</version> </dependency> - <dependency> + <dependency> <groupId>org.apache.xmlgraphics</groupId> <artifactId>batik-dom</artifactId> <version>1.7</version> </dependency> - <dependency> + <dependency> <groupId>org.apache.xmlgraphics</groupId> <artifactId>batik-ext</artifactId> <version>1.7</version> </dependency> - <dependency> + <dependency> <groupId>org.apache.xmlgraphics</groupId> <artifactId>batik-parser</artifactId> <version>1.7</version> </dependency> - <dependency> + <dependency> <groupId>org.apache.xmlgraphics</groupId> <artifactId>batik-svg-dom</artifactId> <version>1.7</version> </dependency> - <dependency> + <dependency> <groupId>org.apache.xmlgraphics</groupId> <artifactId>batik-svggen</artifactId> <version>1.7</version> </dependency> - <dependency> + <dependency> <groupId>org.apache.xmlgraphics</groupId> <artifactId>batik-util</artifactId> <version>1.7</version> </dependency> - <dependency> + <dependency> <groupId>org.apache.xmlgraphics</groupId> <artifactId>batik-xml</artifactId> <version>1.7</version> </dependency> - <dependency> + <dependency> <groupId>xml-apis</groupId> <artifactId>xml-apis-ext</artifactId> <version>1.3.04</version> @@ -103,7 +103,7 @@ <artifactId>tuscany-base-runtime</artifactId> <version>2.0-SNAPSHOT</version> </dependency> - + </dependencies> @@ -112,45 +112,47 @@ <directory>${basedir}/target</directory> <finalName>${artifactId}-${version}</finalName> <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-compiler-plugin</artifactId> - <configuration> - <source>1.5</source> - <target>1.5</target> - </configuration> - </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <source>1.5</source> + <target>1.5</target> + </configuration> + </plugin> <plugin> - <artifactId>maven-dependency-plugin</artifactId> - <executions> - <execution> - <id>${project.artifactId}-fetch-deps</id> - <phase>generate-sources</phase> - <goals><goal>unpack-dependencies</goal></goals> - <configuration> - <outputDirectory>${project.build.outputDirectory}</outputDirectory> - <stripVersion>true</stripVersion> - <excludeTransitive>true</excludeTransitive> - <excludeArtifactIds>junit</excludeArtifactIds> - </configuration> - </execution> - </executions> - </plugin> + <artifactId>maven-dependency-plugin</artifactId> + <executions> + <execution> + <id>${project.artifactId}-fetch-deps</id> + <phase>generate-sources</phase> + <goals> + <goal>unpack-dependencies</goal> + </goals> + <configuration> + <outputDirectory>${project.build.outputDirectory}</outputDirectory> + <stripVersion>true</stripVersion> + <excludeTransitive>true</excludeTransitive> + <excludeArtifactIds>junit</excludeArtifactIds> + </configuration> + </execution> + </executions> + </plugin> <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-jar-plugin</artifactId> - <version>2.3.1</version> - <configuration> - <archive> - <manifest> - <mainClass>org.apache.tuscany.sca.main.Main</mainClass> - </manifest> - </archive> - </configuration> - </plugin> - </plugins> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jar-plugin</artifactId> + <version>2.3.1</version> + <configuration> + <archive> + <manifest> + <mainClass>org.apache.tuscany.sca.diagram.main.Main</mainClass> + </manifest> + </archive> + </configuration> + </plugin> + </plugins> </build> |