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