2 |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
3 |
<modelVersion>4.0.0</modelVersion> |
<modelVersion>4.0.0</modelVersion> |
4 |
|
|
|
<groupId>de.schmitzm</groupId> |
|
5 |
<artifactId>schmitzm-jfree</artifactId> |
<artifactId>schmitzm-jfree</artifactId> |
|
<version>2.5-SNAPSHOT</version> |
|
6 |
<packaging>jar</packaging> |
<packaging>jar</packaging> |
7 |
|
|
8 |
<name>schmitzm-jfree</name> |
<name>schmitzm-jfree</name> |
11 |
<parent> |
<parent> |
12 |
<groupId>de.schmitzm</groupId> |
<groupId>de.schmitzm</groupId> |
13 |
<artifactId>schmitzm-parent</artifactId> |
<artifactId>schmitzm-parent</artifactId> |
14 |
<version>2.5-SNAPSHOT</version> |
<version>2.8-SNAPSHOT</version> |
15 |
<relativePath>../schmitzm-parent/pom.xml</relativePath> |
<relativePath>../schmitzm-parent/pom.xml</relativePath> |
16 |
</parent> |
</parent> |
17 |
|
|
34 |
</dependency> |
</dependency> |
35 |
|
|
36 |
<dependency> |
<dependency> |
37 |
<groupId>jfree</groupId> |
<groupId>org.jfree</groupId> |
38 |
<artifactId>jfreechart</artifactId> |
<artifactId>jfreechart</artifactId> |
39 |
<version>1.0.13</version> |
<version>1.0.14</version> |
40 |
<scope>compile</scope> |
<scope>compile</scope> |
41 |
|
<exclusions> |
42 |
|
<exclusion> |
43 |
|
<groupId>com.lowagie</groupId> |
44 |
|
<artifactId>itext</artifactId> |
45 |
|
</exclusion> |
46 |
|
</exclusions> |
47 |
</dependency> |
</dependency> |
48 |
|
|
49 |
<dependency> |
<dependency> |
78 |
<mainClass>de.schmitzm.lang.ResourceProviderOperator</mainClass> |
<mainClass>de.schmitzm.lang.ResourceProviderOperator</mainClass> |
79 |
<arguments> |
<arguments> |
80 |
<argument>-s</argument> |
<argument>-s</argument> |
81 |
<argument>${project.build.directory}/../src</argument> |
<argument>${basedir}/src/main/resources</argument> |
82 |
<argument>-b</argument> |
<argument>-b</argument> |
83 |
<argument>de.schmitzm.jfree.resource.locales.JFreeResourceBundle |
<argument>de.schmitzm.jfree.resource.locales.JFreeResourceBundle |
84 |
</argument> |
</argument> |
92 |
</profile> |
</profile> |
93 |
</profiles> |
</profiles> |
94 |
|
|
95 |
|
<build> |
96 |
|
<pluginManagement> |
97 |
|
<plugins> |
98 |
|
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> |
99 |
|
<plugin> |
100 |
|
<groupId>org.eclipse.m2e</groupId> |
101 |
|
<artifactId>lifecycle-mapping</artifactId> |
102 |
|
<version>1.0.0</version> |
103 |
|
<configuration> |
104 |
|
<lifecycleMappingMetadata> |
105 |
|
<pluginExecutions> |
106 |
|
<pluginExecution> |
107 |
|
<pluginExecutionFilter> |
108 |
|
<groupId> |
109 |
|
org.codehaus.mojo |
110 |
|
</groupId> |
111 |
|
<artifactId> |
112 |
|
exec-maven-plugin |
113 |
|
</artifactId> |
114 |
|
<versionRange> |
115 |
|
[1.2,) |
116 |
|
</versionRange> |
117 |
|
<goals> |
118 |
|
<goal>java</goal> |
119 |
|
</goals> |
120 |
|
</pluginExecutionFilter> |
121 |
|
<action> |
122 |
|
<ignore></ignore> |
123 |
|
</action> |
124 |
|
</pluginExecution> |
125 |
|
</pluginExecutions> |
126 |
|
</lifecycleMappingMetadata> |
127 |
|
</configuration> |
128 |
|
</plugin> |
129 |
|
</plugins> |
130 |
|
</pluginManagement> |
131 |
|
</build> |
132 |
|
|
133 |
|
|
134 |
|
|
135 |
|
<repositories> |
136 |
|
<repository> |
137 |
|
<id>opengeo</id> |
138 |
|
<name>OpenGeo Maven Repository</name> |
139 |
|
<snapshots> |
140 |
|
<enabled>true</enabled> |
141 |
|
</snapshots> |
142 |
|
<url>http://repo.opengeo.org/</url> |
143 |
|
</repository> |
144 |
|
</repositories> |
145 |
|
|
146 |
</project> |
</project> |