/[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 1386 by alfonx, Wed Jan 26 15:00:45 2011 UTC revision 1782 by alfonx, Thu Nov 17 12:09:40 2011 UTC
# Line 4  Line 4 
4    
5          <groupId>de.schmitzm</groupId>          <groupId>de.schmitzm</groupId>
6          <artifactId>schmitzm-core</artifactId>          <artifactId>schmitzm-core</artifactId>
7          <version>1.0-SNAPSHOT</version>          <version>2.7-SNAPSHOT</version>
8          <packaging>jar</packaging>          <packaging>jar</packaging>
9    
10          <parent>          <parent>
11                  <groupId>de.schmitzm</groupId>                  <groupId>de.schmitzm</groupId>
12                  <artifactId>schmitzm-parent</artifactId>                  <artifactId>schmitzm-parent</artifactId>
13                  <version>1.0-SNAPSHOT</version>                  <version>2.7-SNAPSHOT</version>
14                  <relativePath>../schmitzm-parent/pom.xml</relativePath>                  <relativePath>../schmitzm-parent/pom.xml</relativePath>
15          </parent>          </parent>
16    
# Line 18  Line 18 
18          <url>http://maven.apache.org</url>          <url>http://maven.apache.org</url>
19    
20          <dependencies>          <dependencies>
21                    <dependency>
22                            <groupId>javax.media</groupId>
23                            <artifactId>jai_core</artifactId>
24                            <version>1.1.3</version>
25                            <type>jar</type>
26                            <scope>compile</scope>
27                    </dependency>
28    
29                    <dependency>
30                            <groupId>javax.jnlp</groupId>
31                            <artifactId>jnlp</artifactId>
32                            <version>1.6</version>
33                            <type>jar</type>
34                            <scope>compile</scope>
35                    </dependency>
36    
37                    <dependency>
38                            <groupId>javax.mail</groupId>
39                            <artifactId>mail</artifactId>
40                            <version>1.4.1</version>
41                            <type>jar</type>
42                            <scope>compile</scope>
43                    </dependency>
44    
45                    <dependency>
46                            <!-- NOT USE 2.0.1 for now... -->
47                            <groupId>commons-io</groupId>
48                            <artifactId>commons-io</artifactId>
49                            <version>1.4</version>
50                            <type>jar</type>
51                            <scope>compile</scope>
52                    </dependency>
53    
54                    <dependency>
55                            <groupId>org.supercsv</groupId>
56                            <artifactId>supercsv</artifactId>
57                            <version>1.52</version>
58                    </dependency>
59    
60                    <dependency>
61                            <groupId>com.miglayout</groupId>
62                            <artifactId>miglayout</artifactId>
63                            <version>3.7.4</version>
64                            <classifier>swing</classifier>
65                            <scope>compile</scope>
66                    </dependency>
67    
68                    <dependency>
69                            <groupId>com.toedter</groupId>
70                            <artifactId>jcalendar</artifactId>
71                            <version>1.3.3</version>
72                            <type>jar</type>
73                            <scope>compile</scope>
74                    </dependency>
75    
76                    <dependency>
77                            <groupId>net.jini</groupId>
78                            <artifactId>jini-ext</artifactId>
79                            <version>2.1</version>
80                            <type>jar</type>
81                            <scope>compile</scope>
82                    </dependency>
83    
84                    <dependency>
85                            <groupId>org.jdom</groupId>
86                            <artifactId>jdom</artifactId>
87                            <version>1.1</version>
88                    </dependency>
89    
90                    <dependency>
91                            <groupId>commons-cli</groupId>
92                            <artifactId>commons-cli</artifactId>
93                            <version>1.2</version>
94                            <type>jar</type>
95                            <scope>compile</scope>
96                    </dependency>
97    
98                    <!-- <dependency> <groupId>net.sourceforge.jexcelapi</groupId> <artifactId>jxl</artifactId>
99                            <version>2.6.12</version> <scope>test</scope> </dependency> <dependency>
100                            <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> <version>3.7</version>
101                            <type>jar</type> <scope>test</scope> </dependency> -->
102                    <dependency>
103                            <!-- Kommt in version 2.3 von gt-swing und sonst verwirren die zwei versionene
104                                    den gp export -->
105                            <groupId>commons-lang</groupId>
106                            <artifactId>commons-lang</artifactId>
107                            <version>2.3</version>
108                            <!-- <version>2.4</version> -->
109                            <type>jar</type>
110                            <scope>compile</scope>
111                    </dependency>
112          </dependencies>          </dependencies>
113    
114            <build>
115                    <plugins>
116                            <plugin>
117                                    <groupId>org.apache.maven.plugins</groupId>
118                                    <artifactId>maven-compiler-plugin</artifactId>
119                                    <version>2.3.2</version>
120                                    <configuration>
121                                            <source>1.6</source>
122                                            <target>1.6</target>
123                                            <excludes>
124                                                    <exclude>**/.svn</exclude>
125                                            </excludes>
126                                    </configuration>
127                            </plugin>
128                    </plugins>
129    
130            </build>
131    
132    
133            <profiles>
134                    <profile>
135                            <id>resourceOperationRemove</id>
136                            <!-- When this profile is activated (e.g with "mavn install -P resourceOperationRemove"
137                                    the build will remove any lines in the resource bundes that are tagged with
138                                    REMOVEME_ -->
139                            <build>
140                                    <plugins>
141                                            <plugin>
142                                                    <groupId>org.codehaus.mojo</groupId>
143                                                    <artifactId>exec-maven-plugin</artifactId>
144                                                    <version>1.2</version>
145                                                    <executions>
146                                                            <execution>
147                                                                    <phase>generate-sources</phase>
148                                                                    <goals>
149                                                                            <goal>java</goal>
150                                                                    </goals>
151                                                                    <configuration>
152                                                                            <mainClass>de.schmitzm.lang.ResourceProviderOperator</mainClass>
153                                                                            <arguments>
154                                                                                    <argument>-s</argument>
155                                                                                    <argument>${basedir}/src/main/resources</argument>
156                                                                                    <argument>-b</argument>
157                                                                                    <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
158                                                                                    </argument>
159                                                                            </arguments>
160                                                                    </configuration>
161                                                            </execution>
162                                                    </executions>
163                                            </plugin>
164                                    </plugins>
165                            </build>
166                    </profile>
167            </profiles>
168    
169    
170  </project>  </project>

Legend:
Removed from v.1386  
changed lines
  Added in v.1782

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26