java/cewolf-1.0/pom.xml
changeset 1 639991d0808a
child 2 68cc9b54a153
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/java/cewolf-1.0/pom.xml	Sat Feb 28 21:31:02 2009 +0100
     1.3 @@ -0,0 +1,128 @@
     1.4 +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     1.5 +  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
     1.6 +  <modelVersion>4.0.0</modelVersion>
     1.7 +  <groupId>cewolf</groupId>
     1.8 +  <artifactId>cewolf</artifactId>
     1.9 +  <packaging>jar</packaging>
    1.10 +  <version>1.0</version>
    1.11 +  <name>Cewolf</name>
    1.12 +  <url>http://cewolf.sourceforge.net</url>
    1.13 +
    1.14 +
    1.15 +  <description>
    1.16 +	Cewolf is a tag library for JfreeChart.
    1.17 +    JFreeChart is a class library, written in Java, for generating charts.
    1.18 +    Utilising the Java2D APIs, it currently supports bar charts, pie charts,
    1.19 +    line charts, XY-plots and time series plots.
    1.20 +  </description>
    1.21 +
    1.22 +    <scm>
    1.23 +    <url>http://cvs.sourceforge.net/viewcvs.py/cewolf/</url>
    1.24 +     <connection>
    1.25 +      scm:cvs:pserver:anonymous@cvs.sourceforge.net:/cvsroot/cewolf/cewolf
    1.26 +    </connection> 
    1.27 +</scm>
    1.28 +
    1.29 +<build>
    1.30 +<plugins>
    1.31 +            <plugin>
    1.32 +                 <artifactId>maven-assembly-plugin</artifactId>
    1.33 +                 <version>2.0-beta-1</version>
    1.34 +
    1.35 +                 <configuration>
    1.36 +                   <descriptor>src/main/assembly/assembly.xml</descriptor>
    1.37 +                   <finalName>${pom.artifactId}-${pom.version}</finalName>
    1.38 +                   <outputDirectory>target</outputDirectory>
    1.39 +                   <workDirectory>target/assembly/work</workDirectory>
    1.40 +                 </configuration>
    1.41 +
    1.42 +            </plugin>
    1.43 +<plugin>
    1.44 +   <artifactId>maven-javadoc-plugin</artifactId>
    1.45 +   <executions>
    1.46 +     <execution>
    1.47 +       <phase>package</phase>
    1.48 +  <goals>
    1.49 +       <goal>javadoc</goal>
    1.50 +  </goals>
    1.51 +     </execution>
    1.52 +   </executions>
    1.53 + </plugin>
    1.54 +</plugins>
    1.55 +</build>
    1.56 +<dependencies>
    1.57 +    <dependency>
    1.58 +      <groupId>batik</groupId>
    1.59 +      <artifactId>batik-dom</artifactId>
    1.60 +      <version>1.6</version>
    1.61 +  <scope>compile</scope>
    1.62 +    </dependency>
    1.63 +    <dependency>
    1.64 +      <groupId>batik</groupId>
    1.65 +      <artifactId>batik-awt-util</artifactId>
    1.66 +      <version>1.6</version>
    1.67 +  <scope>compile</scope>
    1.68 +    </dependency>
    1.69 +    <dependency>
    1.70 +      <groupId>batik</groupId>
    1.71 +      <artifactId>batik-svggen</artifactId>
    1.72 +      <version>1.6</version>
    1.73 +  <scope>compile</scope>
    1.74 +    </dependency>
    1.75 +    <dependency>
    1.76 +      <groupId>batik</groupId>
    1.77 +      <artifactId>batik-xml</artifactId>
    1.78 +      <version>1.6</version>
    1.79 +  <scope>compile</scope>
    1.80 +    </dependency>
    1.81 +    <dependency>
    1.82 +      <groupId>batik</groupId>
    1.83 +      <artifactId>batik-util</artifactId>
    1.84 +      <version>1.6</version>
    1.85 +  <scope>compile</scope>
    1.86 +    </dependency>
    1.87 +    <dependency>
    1.88 +      <groupId>commons-logging</groupId>
    1.89 +      <artifactId>commons-logging</artifactId>
    1.90 +      <version>1.0.4</version>
    1.91 +  <scope>compile</scope>
    1.92 +    </dependency>
    1.93 +<dependency>
    1.94 +      <groupId>log4j</groupId>
    1.95 +      <artifactId>log4j</artifactId>
    1.96 +      <version>1.2.12</version>
    1.97 +  <scope>compile</scope>
    1.98 +    </dependency>
    1.99 +<dependency>
   1.100 +      <groupId>crimson</groupId>
   1.101 +      <artifactId>crimson</artifactId>
   1.102 +      <version>1.1.3</version>
   1.103 +  <scope>compile</scope>
   1.104 +    </dependency>
   1.105 +
   1.106 +  <dependency>
   1.107 +      <groupId>javax.servlet</groupId>
   1.108 +      <artifactId>servlet-api</artifactId>
   1.109 +      <version>2.3</version>
   1.110 +  <scope>provided</scope>
   1.111 +    </dependency>
   1.112 +<dependency>
   1.113 +      <groupId>jfreechart</groupId>
   1.114 +      <artifactId>jfreechart</artifactId>
   1.115 +      <version>1.0.0</version>
   1.116 +  <scope>compile</scope>
   1.117 +    </dependency>
   1.118 +    <dependency>
   1.119 +      <groupId>jfree</groupId>
   1.120 +      <artifactId>jcommon</artifactId>
   1.121 +      <version>1.0.0</version>
   1.122 +  <scope>compile</scope>
   1.123 +    </dependency>
   1.124 +  <dependency>
   1.125 +      <groupId>gnujaxp</groupId>
   1.126 +      <artifactId>gnujaxp</artifactId>
   1.127 +      <version>1.0.0</version>
   1.128 +  <scope>compile</scope>
   1.129 +    </dependency>
   1.130 +</dependencies>
   1.131 +</project>