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

Diff of /trunk/schmitzm-core/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 2252 by alfonx, Sun Feb 24 20:10:35 2013 UTC
# Line 2  Line 2 
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-core</artifactId>          <artifactId>schmitzm-core</artifactId>
         <version>2.5-SNAPSHOT</version>  
6          <packaging>jar</packaging>          <packaging>jar</packaging>
7    
8          <parent>          <parent>
9                  <groupId>de.schmitzm</groupId>                  <groupId>de.schmitzm</groupId>
10                  <artifactId>schmitzm-parent</artifactId>                  <artifactId>schmitzm-parent</artifactId>
11                  <version>2.5-SNAPSHOT</version>                  <version>2.8-SNAPSHOT</version>
12                  <relativePath>../schmitzm-parent/pom.xml</relativePath>                  <relativePath>../schmitzm-parent/pom.xml</relativePath>
13          </parent>          </parent>
14    
# Line 18  Line 16 
16          <url>http://maven.apache.org</url>          <url>http://maven.apache.org</url>
17    
18          <dependencies>          <dependencies>
19    
20                  <dependency>                  <dependency>
21                          <groupId>javax.media</groupId>                          <groupId>javax.media</groupId>
22                          <artifactId>jai_core</artifactId>                          <artifactId>jai_core</artifactId>
# Line 25  Line 24 
24                          <type>jar</type>                          <type>jar</type>
25                          <scope>compile</scope>                          <scope>compile</scope>
26                  </dependency>                  </dependency>
27                    
28                  <dependency>                  <dependency>
29                          <groupId>javax.jnlp</groupId>                          <groupId>javax.jnlp</groupId>
30                          <artifactId>jnlp</artifactId>                          <artifactId>jnlp</artifactId>
# Line 43  Line 42 
42                  </dependency>                  </dependency>
43    
44                  <dependency>                  <dependency>
45                            <!-- NOT USE 2.0.1 for now... -->
46                          <groupId>commons-io</groupId>                          <groupId>commons-io</groupId>
47                          <artifactId>commons-io</artifactId>                          <artifactId>commons-io</artifactId>
48                          <version>1.4</version>                          <version>1.4</version>
# Line 53  Line 53 
53                  <dependency>                  <dependency>
54                          <groupId>com.miglayout</groupId>                          <groupId>com.miglayout</groupId>
55                          <artifactId>miglayout</artifactId>                          <artifactId>miglayout</artifactId>
56                          <version>3.7.3</version>                          <version>3.7.4</version>
57                          <classifier>swing</classifier>                          <classifier>swing</classifier>
58                          <scope>compile</scope>                          <scope>compile</scope>
59                  </dependency>                  </dependency>
60    
61                    <!-- <dependency> -->
62                    <!-- <groupId>org.supercsv</groupId> -->
63                    <!-- <artifactId>supercsv</artifactId> -->
64                    <!-- <version>1.52</version> -->
65                    <!-- </dependency> -->
66    
67                    <dependency>
68                            <groupId>com.toedter</groupId>
69                            <artifactId>jcalendar</artifactId>
70                            <version>1.3.3</version>
71                            <type>jar</type>
72                            <scope>compile</scope>
73                    </dependency>
74    
75                  <dependency>                  <dependency>
76                          <groupId>net.jini</groupId>                          <groupId>net.jini</groupId>
77                          <artifactId>jini-ext</artifactId>                          <artifactId>jini-ext</artifactId>
# Line 80  Line 94 
94                          <scope>compile</scope>                          <scope>compile</scope>
95                  </dependency>                  </dependency>
96    
 <!--  
                 <dependency>  
                         <groupId>net.sourceforge.jexcelapi</groupId>  
                         <artifactId>jxl</artifactId>  
                         <version>2.6.12</version>  
                         <scope>test</scope>  
                 </dependency>  
   
                 <dependency>  
                         <groupId>org.apache.poi</groupId>  
                         <artifactId>poi</artifactId>  
                         <version>3.7</version>  
                         <type>jar</type>  
                         <scope>test</scope>  
                 </dependency>  
 -->  
97                  <dependency>                  <dependency>
98                            <!-- Kommt in version 2.3 von gt-swing und sonst verwirren die zwei versionene
99                                    den gp export -->
100                          <groupId>commons-lang</groupId>                          <groupId>commons-lang</groupId>
101                          <artifactId>commons-lang</artifactId>                          <artifactId>commons-lang</artifactId>
102                          <version>2.4</version>                          <version>2.6</version>
103                            <!-- <version>2.4</version> -->
104                          <type>jar</type>                          <type>jar</type>
105                          <scope>compile</scope>                          <scope>compile</scope>
106                  </dependency>                  </dependency>
107    
108          </dependencies>          </dependencies>
109    
110          <build>          <build>
111                  <plugins>  
112                          <plugin>                  <pluginManagement>
113                                  <groupId>org.apache.maven.plugins</groupId>                          <plugins>
114                                  <artifactId>maven-compiler-plugin</artifactId>                                  <!--This plugin's configuration is used to store Eclipse m2e settings
115                                  <version>2.2</version>                                          only. It has no influence on the Maven build itself. -->
116                                  <configuration>                                  <plugin>
117                                          <source>1.6</source>                                          <groupId>org.eclipse.m2e</groupId>
118                                          <target>1.6</target>                                          <artifactId>lifecycle-mapping</artifactId>
119                                          <excludes>                                          <version>1.0.0</version>
120                                                  <exclude>**/.svn</exclude>  ???                                          <configuration>
121                                          </excludes>                                                  <lifecycleMappingMetadata>
122                                  </configuration>                                                          <pluginExecutions>
123                          </plugin>                                                                  <pluginExecution>
124                  </plugins>                                                                          <pluginExecutionFilter>
125                                                                                    <groupId>
126                                                                                            org.codehaus.mojo
127                                                                                    </groupId>
128                                                                                    <artifactId>
129                                                                                            exec-maven-plugin
130                                                                                    </artifactId>
131                                                                                    <versionRange>
132                                                                                            [1.2,)
133                                                                                    </versionRange>
134                                                                                    <goals>
135                                                                                            <goal>java</goal>
136                                                                                    </goals>
137                                                                            </pluginExecutionFilter>
138                                                                            <action>
139                                                                                    <ignore></ignore>
140                                                                            </action>
141                                                                    </pluginExecution>
142                                                            </pluginExecutions>
143                                                    </lifecycleMappingMetadata>
144                                            </configuration>
145                                    </plugin>
146                            </plugins>
147                    </pluginManagement>
148    
149    
150          </build>          </build>
151    
152            <profiles>
153                    <profile>
154                            <id>resourceOperationRemove</id>
155                            <!-- When this profile is activated (e.g with "mavn install -P resourceOperationRemove"
156                                    the build will remove any lines in the resource bundes that are tagged with
157                                    REMOVEME_ -->
158                            <build>
159                                    <plugins>
160                                            <plugin>
161                                                    <groupId>org.codehaus.mojo</groupId>
162                                                    <artifactId>exec-maven-plugin</artifactId>
163                                                    <version>1.2</version>
164                                                    <executions>
165                                                            <execution>
166                                                                    <phase>generate-sources</phase>
167                                                                    <goals>
168                                                                            <goal>java</goal>
169                                                                    </goals>
170                                                                    <configuration>
171                                                                            <mainClass>de.schmitzm.lang.ResourceProviderOperator</mainClass>
172                                                                            <arguments>
173                                                                                    <argument>-s</argument>
174                                                                                    <argument>${basedir}/src/main/resources</argument>
175                                                                                    <argument>-b</argument>
176                                                                                    <argument>de.schmitzm.swing.resource.locales.SwingResourceBundle;de.schmitzm.lang.resource.locales.LangResourceBundle;de.schmitzm.net.mail.resource.locales.MailResourceBundle;de.schmitzm.data.resource.locales.DataResourceBundle
177                                                                                    </argument>
178                                                                            </arguments>
179                                                                    </configuration>
180                                                            </execution>
181                                                    </executions>
182                                            </plugin>
183                                    </plugins>
184                            </build>
185                    </profile>
186            </profiles>
187    
188    
189  </project>  </project>

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26