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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1921 - (show annotations)
Wed Mar 28 10:38:19 2012 UTC (12 years, 11 months ago) by alfonx
File MIME type: text/xml
File size: 5297 byte(s)
neues Modul schmitzm-excelcsv angelegt, mit dependencies fuer jexeclapi und supercsv
1 <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 <version>2.7-SNAPSHOT</version>
8 <packaging>jar</packaging>
9
10 <parent>
11 <groupId>de.schmitzm</groupId>
12 <artifactId>schmitzm-parent</artifactId>
13 <version>2.7-SNAPSHOT</version>
14 <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 <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>com.miglayout</groupId>
56 <artifactId>miglayout</artifactId>
57 <version>3.7.4</version>
58 <classifier>swing</classifier>
59 <scope>compile</scope>
60 </dependency>
61
62 <!-- <dependency> -->
63 <!-- <groupId>org.supercsv</groupId> -->
64 <!-- <artifactId>supercsv</artifactId> -->
65 <!-- <version>1.52</version> -->
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>
99 <!-- Kommt in version 2.3 von gt-swing und sonst verwirren die zwei versionene
100 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>
109
110 <build>
111 <plugins>
112 <plugin>
113 <groupId>org.apache.maven.plugins</groupId>
114 <artifactId>maven-compiler-plugin</artifactId>
115 <version>2.3.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 <pluginManagement>
127 <plugins>
128 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
129 <plugin>
130 <groupId>org.eclipse.m2e</groupId>
131 <artifactId>lifecycle-mapping</artifactId>
132 <version>1.0.0</version>
133 <configuration>
134 <lifecycleMappingMetadata>
135 <pluginExecutions>
136 <pluginExecution>
137 <pluginExecutionFilter>
138 <groupId>
139 org.codehaus.mojo
140 </groupId>
141 <artifactId>
142 exec-maven-plugin
143 </artifactId>
144 <versionRange>
145 [1.2,)
146 </versionRange>
147 <goals>
148 <goal>java</goal>
149 </goals>
150 </pluginExecutionFilter>
151 <action>
152 <ignore></ignore>
153 </action>
154 </pluginExecution>
155 </pluginExecutions>
156 </lifecycleMappingMetadata>
157 </configuration>
158 </plugin>
159 </plugins>
160 </pluginManagement>
161 </build>
162
163
164 <profiles>
165 <profile>
166 <id>resourceOperationRemove</id>
167 <!-- When this profile is activated (e.g with "mavn install -P resourceOperationRemove"
168 the build will remove any lines in the resource bundes that are tagged with
169 REMOVEME_ -->
170 <build>
171 <plugins>
172 <plugin>
173 <groupId>org.codehaus.mojo</groupId>
174 <artifactId>exec-maven-plugin</artifactId>
175 <version>1.2</version>
176 <executions>
177 <execution>
178 <phase>generate-sources</phase>
179 <goals>
180 <goal>java</goal>
181 </goals>
182 <configuration>
183 <mainClass>de.schmitzm.lang.ResourceProviderOperator</mainClass>
184 <arguments>
185 <argument>-s</argument>
186 <argument>${basedir}/src/main/resources</argument>
187 <argument>-b</argument>
188 <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
189 </argument>
190 </arguments>
191 </configuration>
192 </execution>
193 </executions>
194 </plugin>
195 </plugins>
196 </build>
197 </profile>
198 </profiles>
199
200
201 </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