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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2288 - (show annotations)
Tue Mar 26 19:59:16 2013 UTC (11 years, 11 months ago) by mojays
File MIME type: text/xml
File size: 3231 byte(s)
schmitzm-hibernate pom.xml: Ignore execution of ResourceProviderOperator in Eclipse
schmitzm-mp3 pom.xml: resource bundle added

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-mp3</artifactId>
7 <version>2.8-SNAPSHOT</version>
8 <packaging>jar</packaging>
9
10 <parent>
11 <groupId>de.schmitzm</groupId>
12 <artifactId>schmitzm-parent</artifactId>
13 <version>2.8-SNAPSHOT</version>
14 <relativePath>../schmitzm-parent/pom.xml</relativePath>
15 </parent>
16
17 <name>schmitzm-mp3</name>
18 <dependencies>
19 <dependency>
20 <groupId>de.schmitzm</groupId>
21 <artifactId>schmitzm-core</artifactId>
22 <version>${schmitzm.version}</version>
23 <type>jar</type>
24 <scope>compile</scope>
25 </dependency>
26 <dependency>
27 <groupId>org.blinkenlights</groupId>
28 <artifactId>jid3</artifactId>
29 <version>0.46</version>
30 <type>jar</type>
31 <scope>compile</scope>
32 </dependency>
33 </dependencies>
34
35 <profiles>
36 <profile>
37 <id>resourceOperationRemove</id>
38 <!-- When this profile is activated (e.g with "mavn install -P resourceOperationRemove"
39 the build will remove any lines in the resource bundes that are tagged with
40 REMOVEME_ -->
41 <build>
42 <plugins>
43 <plugin>
44 <groupId>org.codehaus.mojo</groupId>
45 <artifactId>exec-maven-plugin</artifactId>
46 <version>1.2</version>
47 <executions>
48 <execution>
49 <phase>generate-sources</phase>
50 <goals>
51 <goal>java</goal>
52 </goals>
53 <configuration>
54 <mainClass>de.schmitzm.lang.ResourceProviderOperator</mainClass>
55 <arguments>
56 <argument>-s</argument>
57 <argument>${basedir}/src/main/resources</argument>
58 <argument>-b</argument>
59 <argument>de.schmitzm.mp3.resource.locales.MP3ResourceBundle;de.schmitzm.mp3.id3.resource.locales.ID3TagResourceBundle
60 </argument>
61 </arguments>
62 </configuration>
63 </execution>
64 </executions>
65 </plugin>
66 </plugins>
67 </build>
68 </profile>
69 </profiles>
70
71 <build>
72
73 <pluginManagement>
74 <plugins>
75 <!--This plugin's configuration is used to store Eclipse m2e settings
76 only. It has no influence on the Maven build itself. -->
77 <plugin>
78 <groupId>org.eclipse.m2e</groupId>
79 <artifactId>lifecycle-mapping</artifactId>
80 <version>1.0.0</version>
81 <configuration>
82 <lifecycleMappingMetadata>
83 <pluginExecutions>
84 <pluginExecution>
85 <pluginExecutionFilter>
86 <groupId>
87 org.codehaus.mojo
88 </groupId>
89 <artifactId>
90 exec-maven-plugin
91 </artifactId>
92 <versionRange>
93 [1.2,)
94 </versionRange>
95 <goals>
96 <goal>java</goal>
97 </goals>
98 </pluginExecutionFilter>
99 <action>
100 <ignore></ignore>
101 </action>
102 </pluginExecution>
103 </pluginExecutions>
104 </lifecycleMappingMetadata>
105 </configuration>
106 </plugin>
107 </plugins>
108 </pluginManagement>
109
110
111 </build>
112
113 </project>

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26