java/cewolf-1.0/pom.xml
author František Kučera <franta-hg@frantovo.cz>
Sat, 28 Feb 2009 21:31:02 +0100
changeset 1 639991d0808a
child 2 68cc9b54a153
permissions -rw-r--r--
Rozbalená knihovna verze 1.0
     1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     2   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
     3   <modelVersion>4.0.0</modelVersion>
     4   <groupId>cewolf</groupId>
     5   <artifactId>cewolf</artifactId>
     6   <packaging>jar</packaging>
     7   <version>1.0</version>
     8   <name>Cewolf</name>
     9   <url>http://cewolf.sourceforge.net</url>
    10 
    11 
    12   <description>
    13 	Cewolf is a tag library for JfreeChart.
    14     JFreeChart is a class library, written in Java, for generating charts.
    15     Utilising the Java2D APIs, it currently supports bar charts, pie charts,
    16     line charts, XY-plots and time series plots.
    17   </description>
    18 
    19     <scm>
    20     <url>http://cvs.sourceforge.net/viewcvs.py/cewolf/</url>
    21      <connection>
    22       scm:cvs:pserver:anonymous@cvs.sourceforge.net:/cvsroot/cewolf/cewolf
    23     </connection> 
    24 </scm>
    25 
    26 <build>
    27 <plugins>
    28             <plugin>
    29                  <artifactId>maven-assembly-plugin</artifactId>
    30                  <version>2.0-beta-1</version>
    31 
    32                  <configuration>
    33                    <descriptor>src/main/assembly/assembly.xml</descriptor>
    34                    <finalName>${pom.artifactId}-${pom.version}</finalName>
    35                    <outputDirectory>target</outputDirectory>
    36                    <workDirectory>target/assembly/work</workDirectory>
    37                  </configuration>
    38 
    39             </plugin>
    40 <plugin>
    41    <artifactId>maven-javadoc-plugin</artifactId>
    42    <executions>
    43      <execution>
    44        <phase>package</phase>
    45   <goals>
    46        <goal>javadoc</goal>
    47   </goals>
    48      </execution>
    49    </executions>
    50  </plugin>
    51 </plugins>
    52 </build>
    53 <dependencies>
    54     <dependency>
    55       <groupId>batik</groupId>
    56       <artifactId>batik-dom</artifactId>
    57       <version>1.6</version>
    58   <scope>compile</scope>
    59     </dependency>
    60     <dependency>
    61       <groupId>batik</groupId>
    62       <artifactId>batik-awt-util</artifactId>
    63       <version>1.6</version>
    64   <scope>compile</scope>
    65     </dependency>
    66     <dependency>
    67       <groupId>batik</groupId>
    68       <artifactId>batik-svggen</artifactId>
    69       <version>1.6</version>
    70   <scope>compile</scope>
    71     </dependency>
    72     <dependency>
    73       <groupId>batik</groupId>
    74       <artifactId>batik-xml</artifactId>
    75       <version>1.6</version>
    76   <scope>compile</scope>
    77     </dependency>
    78     <dependency>
    79       <groupId>batik</groupId>
    80       <artifactId>batik-util</artifactId>
    81       <version>1.6</version>
    82   <scope>compile</scope>
    83     </dependency>
    84     <dependency>
    85       <groupId>commons-logging</groupId>
    86       <artifactId>commons-logging</artifactId>
    87       <version>1.0.4</version>
    88   <scope>compile</scope>
    89     </dependency>
    90 <dependency>
    91       <groupId>log4j</groupId>
    92       <artifactId>log4j</artifactId>
    93       <version>1.2.12</version>
    94   <scope>compile</scope>
    95     </dependency>
    96 <dependency>
    97       <groupId>crimson</groupId>
    98       <artifactId>crimson</artifactId>
    99       <version>1.1.3</version>
   100   <scope>compile</scope>
   101     </dependency>
   102 
   103   <dependency>
   104       <groupId>javax.servlet</groupId>
   105       <artifactId>servlet-api</artifactId>
   106       <version>2.3</version>
   107   <scope>provided</scope>
   108     </dependency>
   109 <dependency>
   110       <groupId>jfreechart</groupId>
   111       <artifactId>jfreechart</artifactId>
   112       <version>1.0.0</version>
   113   <scope>compile</scope>
   114     </dependency>
   115     <dependency>
   116       <groupId>jfree</groupId>
   117       <artifactId>jcommon</artifactId>
   118       <version>1.0.0</version>
   119   <scope>compile</scope>
   120     </dependency>
   121   <dependency>
   122       <groupId>gnujaxp</groupId>
   123       <artifactId>gnujaxp</artifactId>
   124       <version>1.0.0</version>
   125   <scope>compile</scope>
   126     </dependency>
   127 </dependencies>
   128 </project>