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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2260 - (hide 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 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     <artifactId>schmitzm-core</artifactId>
6     <packaging>jar</packaging>
7    
8     <parent>
9     <groupId>de.schmitzm</groupId>
10     <artifactId>schmitzm-parent</artifactId>
11 keeb 2050 <version>2.8-SNAPSHOT</version>
12 alfonx 1386 <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 alfonx 2156
20 alfonx 1406 <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 alfonx 1782
28 alfonx 1406 <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 alfonx 1782 <!-- NOT USE 2.0.1 for now... -->
46 alfonx 1406 <groupId>commons-io</groupId>
47     <artifactId>commons-io</artifactId>
48 alfonx 1490 <version>1.4</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 alfonx 1782 <version>3.7.4</version>
57 alfonx 1406 <classifier>swing</classifier>
58     <scope>compile</scope>
59     </dependency>
60 alfonx 1782
61 alfonx 2025 <!-- <dependency> -->
62     <!-- <groupId>org.supercsv</groupId> -->
63     <!-- <artifactId>supercsv</artifactId> -->
64     <!-- <version>1.52</version> -->
65     <!-- </dependency> -->
66 alfonx 1824
67 mojays 1605 <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 alfonx 2025
75 alfonx 1406 <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 alfonx 1782 <!-- Kommt in version 2.3 von gt-swing und sonst verwirren die zwei versionene
99     den gp export -->
100 alfonx 1406 <groupId>commons-lang</groupId>
101     <artifactId>commons-lang</artifactId>
102 alfonx 2231 <version>2.6</version>
103 alfonx 1782 <!-- <version>2.4</version> -->
104 alfonx 1406 <type>jar</type>
105     <scope>compile</scope>
106     </dependency>
107 alfonx 2241
108 alfonx 1386 </dependencies>
109 alfonx 1406
110     <build>
111    
112 mojays 1813 <pluginManagement>
113     <plugins>
114 alfonx 2025 <!--This plugin's configuration is used to store Eclipse m2e settings
115     only. It has no influence on the Maven build itself. -->
116 mojays 1813 <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 alfonx 2156
149    
150 alfonx 1406 </build>
151 alfonx 1782
152 alfonx 1447 <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 alfonx 1452 <argument>-s</argument>
174     <argument>${basedir}/src/main/resources</argument>
175 alfonx 1447 <argument>-b</argument>
176 mojays 2260 <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 alfonx 1447 </argument>
178     </arguments>
179     </configuration>
180     </execution>
181     </executions>
182     </plugin>
183     </plugins>
184     </build>
185     </profile>
186     </profiles>
187 alfonx 1406
188 alfonx 1782
189 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