4 |
|
|
5 |
<groupId>de.schmitzm</groupId> |
<groupId>de.schmitzm</groupId> |
6 |
<artifactId>schmitzm-jfree</artifactId> |
<artifactId>schmitzm-jfree</artifactId> |
7 |
<version>2.5-SNAPSHOT</version> |
<version>2.7-SNAPSHOT</version> |
8 |
<packaging>jar</packaging> |
<packaging>jar</packaging> |
9 |
|
|
10 |
<name>schmitzm-jfree</name> |
<name>schmitzm-jfree</name> |
13 |
<parent> |
<parent> |
14 |
<groupId>de.schmitzm</groupId> |
<groupId>de.schmitzm</groupId> |
15 |
<artifactId>schmitzm-parent</artifactId> |
<artifactId>schmitzm-parent</artifactId> |
16 |
<version>2.5-SNAPSHOT</version> |
<version>2.7-SNAPSHOT</version> |
17 |
<relativePath>../schmitzm-parent/pom.xml</relativePath> |
<relativePath>../schmitzm-parent/pom.xml</relativePath> |
18 |
</parent> |
</parent> |
19 |
|
|
36 |
</dependency> |
</dependency> |
37 |
|
|
38 |
<dependency> |
<dependency> |
39 |
<groupId>jfree</groupId> |
<groupId>org.jfree</groupId> |
40 |
<artifactId>jfreechart</artifactId> |
<artifactId>jfreechart</artifactId> |
41 |
<version>1.0.13</version> |
<version>1.0.14</version> |
42 |
<scope>compile</scope> |
<scope>compile</scope> |
43 |
|
<exclusions> |
44 |
|
<exclusion> |
45 |
|
<groupId>com.lowagie</groupId> |
46 |
|
<artifactId>itext</artifactId> |
47 |
|
</exclusion> |
48 |
|
</exclusions> |
49 |
</dependency> |
</dependency> |
50 |
|
|
51 |
<dependency> |
<dependency> |
56 |
<scope>compile</scope> |
<scope>compile</scope> |
57 |
</dependency> |
</dependency> |
58 |
</dependencies> |
</dependencies> |
59 |
|
|
60 |
|
|
61 |
|
<profiles> |
62 |
|
<profile> |
63 |
|
<id>resourceOperationRemove</id> |
64 |
|
<!-- When this profile is activated (e.g with "mavn install -P resourceOperationRemove" |
65 |
|
the build will remove any lines in the resource bundes that are tagged with |
66 |
|
REMOVEME_ --> |
67 |
|
<build> |
68 |
|
<plugins> |
69 |
|
<plugin> |
70 |
|
<groupId>org.codehaus.mojo</groupId> |
71 |
|
<artifactId>exec-maven-plugin</artifactId> |
72 |
|
<version>1.2</version> |
73 |
|
<executions> |
74 |
|
<execution> |
75 |
|
<phase>generate-sources</phase> |
76 |
|
<goals> |
77 |
|
<goal>java</goal> |
78 |
|
</goals> |
79 |
|
<configuration> |
80 |
|
<mainClass>de.schmitzm.lang.ResourceProviderOperator</mainClass> |
81 |
|
<arguments> |
82 |
|
<argument>-s</argument> |
83 |
|
<argument>${basedir}/src/main/resources</argument> |
84 |
|
<argument>-b</argument> |
85 |
|
<argument>de.schmitzm.jfree.resource.locales.JFreeResourceBundle |
86 |
|
</argument> |
87 |
|
</arguments> |
88 |
|
</configuration> |
89 |
|
</execution> |
90 |
|
</executions> |
91 |
|
</plugin> |
92 |
|
</plugins> |
93 |
|
</build> |
94 |
|
</profile> |
95 |
|
</profiles> |
96 |
|
|
97 |
|
<build> |
98 |
|
<pluginManagement> |
99 |
|
<plugins> |
100 |
|
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> |
101 |
|
<plugin> |
102 |
|
<groupId>org.eclipse.m2e</groupId> |
103 |
|
<artifactId>lifecycle-mapping</artifactId> |
104 |
|
<version>1.0.0</version> |
105 |
|
<configuration> |
106 |
|
<lifecycleMappingMetadata> |
107 |
|
<pluginExecutions> |
108 |
|
<pluginExecution> |
109 |
|
<pluginExecutionFilter> |
110 |
|
<groupId> |
111 |
|
org.codehaus.mojo |
112 |
|
</groupId> |
113 |
|
<artifactId> |
114 |
|
exec-maven-plugin |
115 |
|
</artifactId> |
116 |
|
<versionRange> |
117 |
|
[1.2,) |
118 |
|
</versionRange> |
119 |
|
<goals> |
120 |
|
<goal>java</goal> |
121 |
|
</goals> |
122 |
|
</pluginExecutionFilter> |
123 |
|
<action> |
124 |
|
<ignore></ignore> |
125 |
|
</action> |
126 |
|
</pluginExecution> |
127 |
|
</pluginExecutions> |
128 |
|
</lifecycleMappingMetadata> |
129 |
|
</configuration> |
130 |
|
</plugin> |
131 |
|
</plugins> |
132 |
|
</pluginManagement> |
133 |
|
</build> |
134 |
</project> |
</project> |