/[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 1391 by alfonx, Wed Jan 26 15:25:32 2011 UTC revision 2231 by alfonx, Fri Feb 15 08:07:22 2013 UTC
# Line 1  Line 1 
1  <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  <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/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    
5    <groupId>de.schmitzm</groupId>          <artifactId>schmitzm-jfree</artifactId>
6    <artifactId>schmitzm-jfree</artifactId>          <packaging>jar</packaging>
   <version>1.0-SNAPSHOT</version>  
   <packaging>jar</packaging>  
7    
8    <name>schmitzm-jfree</name>          <name>schmitzm-jfree</name>
9    <url>http://maven.apache.org</url>          <url>http://maven.apache.org</url>
10    
11          <parent>          <parent>
12                  <groupId>de.schmitzm</groupId>                  <groupId>de.schmitzm</groupId>
13                  <artifactId>schmitzm-parent</artifactId>                  <artifactId>schmitzm-parent</artifactId>
14                  <version>1.0-SNAPSHOT</version>                  <version>2.8-SNAPSHOT</version>
15                  <relativePath>../schmitzm-parent/pom.xml</relativePath>                  <relativePath>../schmitzm-parent/pom.xml</relativePath>
16          </parent>          </parent>
17    
18    <dependencies>          <dependencies>
19      
20                  <dependency>                  <dependency>
21                          <groupId>de.schmitzm</groupId>                          <groupId>de.schmitzm</groupId>
22                          <artifactId>schmitzm-core</artifactId>                          <artifactId>schmitzm-core</artifactId>
23                          <version>1.0-SNAPSHOT</version>                          <version>${project.version}</version>
24                          <type>test-jar</type>                          <type>jar</type>
25                          <scope>test</scope>                          <scope>compile</scope>
26                  </dependency>                  </dependency>
27    
28                  <dependency>                  <dependency>
29                          <groupId>de.schmitzm</groupId>                          <groupId>de.schmitzm</groupId>
30                          <artifactId>schmitzm-core</artifactId>                          <artifactId>schmitzm-core</artifactId>
31                          <version>1.0-SNAPSHOT</version>                          <version>${project.version}</version>
32                          <type>jar</type>                          <type>test-jar</type>
33                          <scope>compile</scope>                          <scope>test</scope>
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>
# Line 49  Line 53 
53                          <type>jar</type>                          <type>jar</type>
54                          <scope>compile</scope>                          <scope>compile</scope>
55                  </dependency>                  </dependency>
56    </dependencies>          </dependencies>
57            
58            
59            <profiles>
60                    <profile>
61                            <id>resourceOperationRemove</id>
62                            <!-- When this profile is activated (e.g with "mavn install -P resourceOperationRemove"
63                                    the build will remove any lines in the resource bundes that are tagged with
64                                    REMOVEME_ -->
65                            <build>
66                                    <plugins>
67                                            <plugin>
68                                                    <groupId>org.codehaus.mojo</groupId>
69                                                    <artifactId>exec-maven-plugin</artifactId>
70                                                    <version>1.2</version>
71                                                    <executions>
72                                                            <execution>
73                                                                    <phase>generate-sources</phase>
74                                                                    <goals>
75                                                                            <goal>java</goal>
76                                                                    </goals>
77                                                                    <configuration>
78                                                                            <mainClass>de.schmitzm.lang.ResourceProviderOperator</mainClass>
79                                                                            <arguments>
80                                                                                    <argument>-s</argument>
81                                                                                    <argument>${basedir}/src/main/resources</argument>
82                                                                                    <argument>-b</argument>
83                                                                                    <argument>de.schmitzm.jfree.resource.locales.JFreeResourceBundle
84                                                                                    </argument>
85                                                                            </arguments>
86                                                                    </configuration>
87                                                            </execution>
88                                                    </executions>
89                                            </plugin>
90                                    </plugins>
91                            </build>
92                    </profile>
93            </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>

Legend:
Removed from v.1391  
changed lines
  Added in v.2231

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26