/[schmitzm]/branches/2.5/schmitzm-core/pom.xml
ViewVC logotype

Diff of /branches/2.5/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 1488 by alfonx, Sat Feb 5 10:24:59 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.5-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.5-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                            <groupId>commons-io</groupId>
47                            <artifactId>commons-io</artifactId>
48                            <version>2.0.1</version>
49                            <type>jar</type>
50                            <scope>compile</scope>
51                    </dependency>
52    
53                    <dependency>
54                            <groupId>com.miglayout</groupId>
55                            <artifactId>miglayout</artifactId>
56                            <version>3.7.3</version>
57                            <classifier>swing</classifier>
58                            <scope>compile</scope>
59                    </dependency>
60    
61                    <dependency>
62                            <groupId>net.jini</groupId>
63                            <artifactId>jini-ext</artifactId>
64                            <version>2.1</version>
65                            <type>jar</type>
66                            <scope>compile</scope>
67                    </dependency>
68    
69                    <dependency>
70                            <groupId>org.jdom</groupId>
71                            <artifactId>jdom</artifactId>
72                            <version>1.1</version>
73                    </dependency>
74    
75                    <dependency>
76                            <groupId>commons-cli</groupId>
77                            <artifactId>commons-cli</artifactId>
78                            <version>1.2</version>
79                            <type>jar</type>
80                            <scope>compile</scope>
81                    </dependency>
82    
83    <!--
84                    <dependency>
85                            <groupId>net.sourceforge.jexcelapi</groupId>
86                            <artifactId>jxl</artifactId>
87                            <version>2.6.12</version>
88                            <scope>test</scope>
89                    </dependency>
90    
91                    <dependency>
92                            <groupId>org.apache.poi</groupId>
93                            <artifactId>poi</artifactId>
94                            <version>3.7</version>
95                            <type>jar</type>
96                            <scope>test</scope>
97                    </dependency>
98    -->
99                    <dependency>
100    <!-- Kommt in version 2.3 von gt-swing und sonst verwirren die zwei versionene den gp export -->
101                            <groupId>commons-lang</groupId>
102                            <artifactId>commons-lang</artifactId>
103                            <version>2.3</version>
104    <!--                    <version>2.4</version>-->
105                            <type>jar</type>
106                            <scope>compile</scope>
107                    </dependency>
108          </dependencies>          </dependencies>
109    
110            <build>
111                    <plugins>
112                            <plugin>
113                                    <groupId>org.apache.maven.plugins</groupId>
114                                    <artifactId>maven-compiler-plugin</artifactId>
115                                    <version>2.2</version>
116                                    <configuration>
117                                            <source>1.6</source>
118                                            <target>1.6</target>
119                                            <excludes>
120                                                    <exclude>**/.svn</exclude>  ???
121                                            </excludes>
122                                    </configuration>
123                            </plugin>
124                    </plugins>
125    
126            </build>
127            
128            
129            <profiles>
130                    <profile>
131                            <id>resourceOperationRemove</id>
132                            <!-- When this profile is activated (e.g with "mavn install -P resourceOperationRemove"
133                                    the build will remove any lines in the resource bundes that are tagged with
134                                    REMOVEME_ -->
135                            <build>
136                                    <plugins>
137                                            <plugin>
138                                                    <groupId>org.codehaus.mojo</groupId>
139                                                    <artifactId>exec-maven-plugin</artifactId>
140                                                    <version>1.2</version>
141                                                    <executions>
142                                                            <execution>
143                                                                    <phase>generate-sources</phase>
144                                                                    <goals>
145                                                                            <goal>java</goal>
146                                                                    </goals>
147                                                                    <configuration>
148                                                                            <mainClass>de.schmitzm.lang.ResourceProviderOperator</mainClass>
149                                                                            <arguments>
150                                                                                    <argument>-s</argument>
151                                                                                    <argument>${basedir}/src/main/resources</argument>
152                                                                                    <argument>-b</argument>
153                                                                                    <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
154                                                                                    </argument>
155                                                                            </arguments>
156                                                                    </configuration>
157                                                            </execution>
158                                                    </executions>
159                                            </plugin>
160                                    </plugins>
161                            </build>
162                    </profile>
163            </profiles>
164            
165    
166  </project>  </project>

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26