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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2260 - (show annotations)
Thu Feb 28 23:17:31 2013 UTC (12 years ago) by mojays
File MIME type: text/xml
File size: 4949 byte(s)
schmitzm-core/pom.xml:
- IOResourceBundle added to execution of ResourceProviderOperator
IOUtil:
- new variants of createTemporaryFile(.) and getApplicationCommand(.);
- BugFix in createApplicationStartCommand(.) (for "startedFromClasspath" flag);
- Exception handling in downloadUrlToFile(.) refined;
- new methods getApplicationFile/Filename/Filepath(.);
- new methods renameFile(.);
IOUtilBasic:
- new methods renameFile(.)
SwingUtil:
- performReleaseUpdateWithProgressBar(.) modified/refined
ReleaseUpdater:
- new method getApplicationFileName()
- update check deactivated when running from classpath
ReleaseControl:
- java doc updated

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 <artifactId>schmitzm-core</artifactId>
6 <packaging>jar</packaging>
7
8 <parent>
9 <groupId>de.schmitzm</groupId>
10 <artifactId>schmitzm-parent</artifactId>
11 <version>2.8-SNAPSHOT</version>
12 <relativePath>../schmitzm-parent/pom.xml</relativePath>
13 </parent>
14
15 <name>schmitzm-core</name>
16 <url>http://maven.apache.org</url>
17
18 <dependencies>
19
20 <dependency>
21 <groupId>javax.media</groupId>
22 <artifactId>jai_core</artifactId>
23 <version>1.1.3</version>
24 <type>jar</type>
25 <scope>compile</scope>
26 </dependency>
27
28 <dependency>
29 <groupId>javax.jnlp</groupId>
30 <artifactId>jnlp</artifactId>
31 <version>1.6</version>
32 <type>jar</type>
33 <scope>compile</scope>
34 </dependency>
35
36 <dependency>
37 <groupId>javax.mail</groupId>
38 <artifactId>mail</artifactId>
39 <version>1.4.1</version>
40 <type>jar</type>
41 <scope>compile</scope>
42 </dependency>
43
44 <dependency>
45 <!-- NOT USE 2.0.1 for now... -->
46 <groupId>commons-io</groupId>
47 <artifactId>commons-io</artifactId>
48 <version>1.4</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.4</version>
57 <classifier>swing</classifier>
58 <scope>compile</scope>
59 </dependency>
60
61 <!-- <dependency> -->
62 <!-- <groupId>org.supercsv</groupId> -->
63 <!-- <artifactId>supercsv</artifactId> -->
64 <!-- <version>1.52</version> -->
65 <!-- </dependency> -->
66
67 <dependency>
68 <groupId>com.toedter</groupId>
69 <artifactId>jcalendar</artifactId>
70 <version>1.3.3</version>
71 <type>jar</type>
72 <scope>compile</scope>
73 </dependency>
74
75 <dependency>
76 <groupId>net.jini</groupId>
77 <artifactId>jini-ext</artifactId>
78 <version>2.1</version>
79 <type>jar</type>
80 <scope>compile</scope>
81 </dependency>
82
83 <dependency>
84 <groupId>org.jdom</groupId>
85 <artifactId>jdom</artifactId>
86 <version>1.1</version>
87 </dependency>
88
89 <dependency>
90 <groupId>commons-cli</groupId>
91 <artifactId>commons-cli</artifactId>
92 <version>1.2</version>
93 <type>jar</type>
94 <scope>compile</scope>
95 </dependency>
96
97 <dependency>
98 <!-- Kommt in version 2.3 von gt-swing und sonst verwirren die zwei versionene
99 den gp export -->
100 <groupId>commons-lang</groupId>
101 <artifactId>commons-lang</artifactId>
102 <version>2.6</version>
103 <!-- <version>2.4</version> -->
104 <type>jar</type>
105 <scope>compile</scope>
106 </dependency>
107
108 </dependencies>
109
110 <build>
111
112 <pluginManagement>
113 <plugins>
114 <!--This plugin's configuration is used to store Eclipse m2e settings
115 only. It has no influence on the Maven build itself. -->
116 <plugin>
117 <groupId>org.eclipse.m2e</groupId>
118 <artifactId>lifecycle-mapping</artifactId>
119 <version>1.0.0</version>
120 <configuration>
121 <lifecycleMappingMetadata>
122 <pluginExecutions>
123 <pluginExecution>
124 <pluginExecutionFilter>
125 <groupId>
126 org.codehaus.mojo
127 </groupId>
128 <artifactId>
129 exec-maven-plugin
130 </artifactId>
131 <versionRange>
132 [1.2,)
133 </versionRange>
134 <goals>
135 <goal>java</goal>
136 </goals>
137 </pluginExecutionFilter>
138 <action>
139 <ignore></ignore>
140 </action>
141 </pluginExecution>
142 </pluginExecutions>
143 </lifecycleMappingMetadata>
144 </configuration>
145 </plugin>
146 </plugins>
147 </pluginManagement>
148
149
150 </build>
151
152 <profiles>
153 <profile>
154 <id>resourceOperationRemove</id>
155 <!-- When this profile is activated (e.g with "mavn install -P resourceOperationRemove"
156 the build will remove any lines in the resource bundes that are tagged with
157 REMOVEME_ -->
158 <build>
159 <plugins>
160 <plugin>
161 <groupId>org.codehaus.mojo</groupId>
162 <artifactId>exec-maven-plugin</artifactId>
163 <version>1.2</version>
164 <executions>
165 <execution>
166 <phase>generate-sources</phase>
167 <goals>
168 <goal>java</goal>
169 </goals>
170 <configuration>
171 <mainClass>de.schmitzm.lang.ResourceProviderOperator</mainClass>
172 <arguments>
173 <argument>-s</argument>
174 <argument>${basedir}/src/main/resources</argument>
175 <argument>-b</argument>
176 <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;de.schmitzm.io.resource.locales.IOResourceBundle
177 </argument>
178 </arguments>
179 </configuration>
180 </execution>
181 </executions>
182 </plugin>
183 </plugins>
184 </build>
185 </profile>
186 </profiles>
187
188
189 </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