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

Annotation of /trunk/schmitzm-core/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1488 - (hide annotations)
Sat Feb 5 10:24:59 2011 UTC (14 years ago) by alfonx
File MIME type: text/xml
File size: 4273 byte(s)
Added method cleanupTempDir to IOUtils
1 alfonx 1386 <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">
3     <modelVersion>4.0.0</modelVersion>
4    
5     <groupId>de.schmitzm</groupId>
6     <artifactId>schmitzm-core</artifactId>
7 alfonx 1440 <version>2.5-SNAPSHOT</version>
8 alfonx 1386 <packaging>jar</packaging>
9    
10     <parent>
11     <groupId>de.schmitzm</groupId>
12     <artifactId>schmitzm-parent</artifactId>
13 alfonx 1440 <version>2.5-SNAPSHOT</version>
14 alfonx 1386 <relativePath>../schmitzm-parent/pom.xml</relativePath>
15     </parent>
16    
17     <name>schmitzm-core</name>
18     <url>http://maven.apache.org</url>
19    
20     <dependencies>
21 alfonx 1406 <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 alfonx 1488 <version>2.0.1</version>
49 alfonx 1406 <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 alfonx 1409 <!--
84 alfonx 1406 <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 alfonx 1409 -->
99 alfonx 1406 <dependency>
100 alfonx 1466 <!-- Kommt in version 2.3 von gt-swing und sonst verwirren die zwei versionene den gp export -->
101 alfonx 1406 <groupId>commons-lang</groupId>
102     <artifactId>commons-lang</artifactId>
103 alfonx 1466 <version>2.3</version>
104     <!-- <version>2.4</version>-->
105 alfonx 1406 <type>jar</type>
106     <scope>compile</scope>
107     </dependency>
108 alfonx 1386 </dependencies>
109 alfonx 1406
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 alfonx 1447
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 alfonx 1452 <argument>-s</argument>
151     <argument>${basedir}/src/main/resources</argument>
152 alfonx 1447 <argument>-b</argument>
153 mojays 1454 <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 alfonx 1447 </argument>
155     </arguments>
156     </configuration>
157     </execution>
158     </executions>
159     </plugin>
160     </plugins>
161     </build>
162     </profile>
163     </profiles>
164    
165 alfonx 1406
166 alfonx 1386 </project>

Properties

Name Value
svn:eol-style native
svn:keywords Id URL
svn:mime-type text/xml

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26