/[schmitzm]/trunk/schmitzm-jfree/pom.xml
ViewVC logotype

Diff of /trunk/schmitzm-jfree/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1440 by alfonx, Thu Jan 27 13:08:28 2011 UTC revision 2060 by alfonx, Wed Jun 27 14:20:23 2012 UTC
# Line 4  Line 4 
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.8-SNAPSHOT</version>
8          <packaging>jar</packaging>          <packaging>jar</packaging>
9    
10          <name>schmitzm-jfree</name>          <name>schmitzm-jfree</name>
# Line 13  Line 13 
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.8-SNAPSHOT</version>
17                  <relativePath>../schmitzm-parent/pom.xml</relativePath>                  <relativePath>../schmitzm-parent/pom.xml</relativePath>
18          </parent>          </parent>
19    
# Line 22  Line 22 
22                  <dependency>                  <dependency>
23                          <groupId>de.schmitzm</groupId>                          <groupId>de.schmitzm</groupId>
24                          <artifactId>schmitzm-core</artifactId>                          <artifactId>schmitzm-core</artifactId>
25                          <version>2.5-SNAPSHOT</version>                          <version>${project.version}</version>
26                          <type>jar</type>                          <type>jar</type>
27                          <scope>compile</scope>                          <scope>compile</scope>
28                  </dependency>                  </dependency>
# Line 30  Line 30 
30                  <dependency>                  <dependency>
31                          <groupId>de.schmitzm</groupId>                          <groupId>de.schmitzm</groupId>
32                          <artifactId>schmitzm-core</artifactId>                          <artifactId>schmitzm-core</artifactId>
33                          <version>2.5-SNAPSHOT</version>                          <version>${project.version}</version>
34                          <type>test-jar</type>                          <type>test-jar</type>
35                          <scope>test</scope>                          <scope>test</scope>
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>
# Line 50  Line 56 
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    
135    
136    
137      <repositories>
138       <repository>
139          <id>opengeo</id>
140          <name>OpenGeo Maven Repository</name>
141          <snapshots>
142            <enabled>true</enabled>
143          </snapshots>
144          <url>http://repo.opengeo.org/</url>
145        </repository>
146      </repositories>
147    
148  </project>  </project>

Legend:
Removed from v.1440  
changed lines
  Added in v.2060

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26