/[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 2244 by alfonx, Sun Feb 24 19:44:23 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>
21                            <groupId>com.eaio.stringsearch</groupId>
22                            <artifactId>stringsearch</artifactId>
23                            <version>2</version>
24                    </dependency>
25    
26                  <dependency>                  <dependency>
27                          <groupId>javax.media</groupId>                          <groupId>javax.media</groupId>
28                          <artifactId>jai_core</artifactId>                          <artifactId>jai_core</artifactId>
# Line 25  Line 30 
30                          <type>jar</type>                          <type>jar</type>
31                          <scope>compile</scope>                          <scope>compile</scope>
32                  </dependency>                  </dependency>
33                    
34                  <dependency>                  <dependency>
35                          <groupId>javax.jnlp</groupId>                          <groupId>javax.jnlp</groupId>
36                          <artifactId>jnlp</artifactId>                          <artifactId>jnlp</artifactId>
# Line 43  Line 48 
48                  </dependency>                  </dependency>
49    
50                  <dependency>                  <dependency>
51                            <!-- NOT USE 2.0.1 for now... -->
52                          <groupId>commons-io</groupId>                          <groupId>commons-io</groupId>
53                          <artifactId>commons-io</artifactId>                          <artifactId>commons-io</artifactId>
54                          <version>1.4</version>                          <version>1.4</version>
# Line 53  Line 59 
59                  <dependency>                  <dependency>
60                          <groupId>com.miglayout</groupId>                          <groupId>com.miglayout</groupId>
61                          <artifactId>miglayout</artifactId>                          <artifactId>miglayout</artifactId>
62                          <version>3.7.3</version>                          <version>3.7.4</version>
63                          <classifier>swing</classifier>                          <classifier>swing</classifier>
64                          <scope>compile</scope>                          <scope>compile</scope>
65                  </dependency>                  </dependency>
66    
67                    <!-- <dependency> -->
68                    <!-- <groupId>org.supercsv</groupId> -->
69                    <!-- <artifactId>supercsv</artifactId> -->
70                    <!-- <version>1.52</version> -->
71                    <!-- </dependency> -->
72    
73                    <dependency>
74                            <groupId>com.toedter</groupId>
75                            <artifactId>jcalendar</artifactId>
76                            <version>1.3.3</version>
77                            <type>jar</type>
78                            <scope>compile</scope>
79                    </dependency>
80    
81                  <dependency>                  <dependency>
82                          <groupId>net.jini</groupId>                          <groupId>net.jini</groupId>
83                          <artifactId>jini-ext</artifactId>                          <artifactId>jini-ext</artifactId>
# Line 80  Line 100 
100                          <scope>compile</scope>                          <scope>compile</scope>
101                  </dependency>                  </dependency>
102    
 <!--  
                 <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>  
 -->  
103                  <dependency>                  <dependency>
104                            <!-- Kommt in version 2.3 von gt-swing und sonst verwirren die zwei versionene
105                                    den gp export -->
106                          <groupId>commons-lang</groupId>                          <groupId>commons-lang</groupId>
107                          <artifactId>commons-lang</artifactId>                          <artifactId>commons-lang</artifactId>
108                          <version>2.4</version>                          <version>2.6</version>
109                            <!-- <version>2.4</version> -->
110                          <type>jar</type>                          <type>jar</type>
111                          <scope>compile</scope>                          <scope>compile</scope>
112                  </dependency>                  </dependency>
113    
114          </dependencies>          </dependencies>
115    
116          <build>          <build>
117                  <plugins>  
118                          <plugin>                  <pluginManagement>
119                                  <groupId>org.apache.maven.plugins</groupId>                          <plugins>
120                                  <artifactId>maven-compiler-plugin</artifactId>                                  <!--This plugin's configuration is used to store Eclipse m2e settings
121                                  <version>2.2</version>                                          only. It has no influence on the Maven build itself. -->
122                                  <configuration>                                  <plugin>
123                                          <source>1.6</source>                                          <groupId>org.eclipse.m2e</groupId>
124                                          <target>1.6</target>                                          <artifactId>lifecycle-mapping</artifactId>
125                                          <excludes>                                          <version>1.0.0</version>
126                                                  <exclude>**/.svn</exclude>  ???                                          <configuration>
127                                          </excludes>                                                  <lifecycleMappingMetadata>
128                                  </configuration>                                                          <pluginExecutions>
129                          </plugin>                                                                  <pluginExecution>
130                  </plugins>                                                                          <pluginExecutionFilter>
131                                                                                    <groupId>
132                                                                                            org.codehaus.mojo
133                                                                                    </groupId>
134                                                                                    <artifactId>
135                                                                                            exec-maven-plugin
136                                                                                    </artifactId>
137                                                                                    <versionRange>
138                                                                                            [1.2,)
139                                                                                    </versionRange>
140                                                                                    <goals>
141                                                                                            <goal>java</goal>
142                                                                                    </goals>
143                                                                            </pluginExecutionFilter>
144                                                                            <action>
145                                                                                    <ignore></ignore>
146                                                                            </action>
147                                                                    </pluginExecution>
148                                                            </pluginExecutions>
149                                                    </lifecycleMappingMetadata>
150                                            </configuration>
151                                    </plugin>
152                            </plugins>
153                    </pluginManagement>
154    
155    
156          </build>          </build>
157    
158            <repositories>
159                    <repository>
160                            <id>eaio.com</id>
161                            <url>http://eaio.com/maven2</url>
162                    </repository>
163            </repositories>
164    
165            <profiles>
166                    <profile>
167                            <id>resourceOperationRemove</id>
168                            <!-- When this profile is activated (e.g with "mavn install -P resourceOperationRemove"
169                                    the build will remove any lines in the resource bundes that are tagged with
170                                    REMOVEME_ -->
171                            <build>
172                                    <plugins>
173                                            <plugin>
174                                                    <groupId>org.codehaus.mojo</groupId>
175                                                    <artifactId>exec-maven-plugin</artifactId>
176                                                    <version>1.2</version>
177                                                    <executions>
178                                                            <execution>
179                                                                    <phase>generate-sources</phase>
180                                                                    <goals>
181                                                                            <goal>java</goal>
182                                                                    </goals>
183                                                                    <configuration>
184                                                                            <mainClass>de.schmitzm.lang.ResourceProviderOperator</mainClass>
185                                                                            <arguments>
186                                                                                    <argument>-s</argument>
187                                                                                    <argument>${basedir}/src/main/resources</argument>
188                                                                                    <argument>-b</argument>
189                                                                                    <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
190                                                                                    </argument>
191                                                                            </arguments>
192                                                                    </configuration>
193                                                            </execution>
194                                                    </executions>
195                                            </plugin>
196                                    </plugins>
197                            </build>
198                    </profile>
199            </profiles>
200    
201    
202  </project>  </project>

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26