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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2265 - (hide annotations)
Fri Mar 1 00:56:49 2013 UTC (12 years ago) by mojays
File MIME type: text/xml
File size: 3615 byte(s)
Ignore execution of ResourceProviderOperator in Eclipse

1 mojays 2111 <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-mail</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-mail</name>
18     <dependencies>
19     <dependency>
20     <groupId>com.metaphaseeditor</groupId>
21     <artifactId>metaphaseEditor</artifactId>
22 mojays 2117 <!-- MetaphaseEditor with some litte modifications in
23     - MetaphaseEditorPanel
24     - ImageDialog
25     to allow some extensions in sub-classes -->
26     <version>1.1.0-mod-with-jazzy</version>
27 mojays 2111 <scope>compile</scope>
28     </dependency>
29     <dependency>
30     <groupId>de.schmitzm</groupId>
31     <artifactId>schmitzm-core</artifactId>
32     <version>${project.version}</version>
33     <type>test-jar</type>
34     <scope>test</scope>
35     </dependency>
36     <dependency>
37     <groupId>de.schmitzm</groupId>
38     <artifactId>schmitzm-core</artifactId>
39     <version>${project.version}</version>
40     <type>jar</type>
41     <scope>compile</scope>
42     </dependency>
43     </dependencies>
44    
45 mojays 2263 <profiles>
46     <profile>
47     <id>resourceOperationRemove</id>
48     <!-- When this profile is activated (e.g with "mavn install -P resourceOperationRemove"
49     the build will remove any lines in the resource bundes that are tagged with
50     REMOVEME_ -->
51     <build>
52     <plugins>
53     <plugin>
54     <groupId>org.codehaus.mojo</groupId>
55     <artifactId>exec-maven-plugin</artifactId>
56     <version>1.2</version>
57     <executions>
58     <execution>
59     <phase>generate-sources</phase>
60     <goals>
61     <goal>java</goal>
62     </goals>
63     <configuration>
64     <mainClass>de.schmitzm.lang.ResourceProviderOperator</mainClass>
65     <arguments>
66     <argument>-s</argument>
67     <argument>${basedir}/src/main/resources</argument>
68     <argument>-b</argument>
69     <argument>de.schmitzm.net.mail.gui.resource.locales.MailGUIResourceBundle
70     </argument>
71     </arguments>
72     </configuration>
73     </execution>
74     </executions>
75     </plugin>
76     </plugins>
77     </build>
78     </profile>
79     </profiles>
80    
81 mojays 2265 <build>
82    
83     <pluginManagement>
84     <plugins>
85     <!--This plugin's configuration is used to store Eclipse m2e settings
86     only. It has no influence on the Maven build itself. -->
87     <plugin>
88     <groupId>org.eclipse.m2e</groupId>
89     <artifactId>lifecycle-mapping</artifactId>
90     <version>1.0.0</version>
91     <configuration>
92     <lifecycleMappingMetadata>
93     <pluginExecutions>
94     <pluginExecution>
95     <pluginExecutionFilter>
96     <groupId>
97     org.codehaus.mojo
98     </groupId>
99     <artifactId>
100     exec-maven-plugin
101     </artifactId>
102     <versionRange>
103     [1.2,)
104     </versionRange>
105     <goals>
106     <goal>java</goal>
107     </goals>
108     </pluginExecutionFilter>
109     <action>
110     <ignore></ignore>
111     </action>
112     </pluginExecution>
113     </pluginExecutions>
114     </lifecycleMappingMetadata>
115     </configuration>
116     </plugin>
117     </plugins>
118     </pluginManagement>
119    
120    
121     </build>
122 mojays 2111 </project>

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26