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

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

Parent Directory Parent Directory | Revision Log Revision Log


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

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-excelcsv</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-excelcsv</name>
16 <dependencies>
17 <dependency>
18 <groupId>net.sourceforge.jexcelapi</groupId>
19 <artifactId>jxl</artifactId>
20 <version>2.6.12</version>
21 </dependency>
22
23 <dependency>
24 <groupId>org.supercsv</groupId>
25 <artifactId>supercsv</artifactId>
26 <version>1.52</version>
27 </dependency>
28
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 <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.csv.resource.locales.CSVResourceBundle
70 </argument>
71 </arguments>
72 </configuration>
73 </execution>
74 </executions>
75 </plugin>
76 </plugins>
77 </build>
78 </profile>
79 </profiles>
80
81 <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 </project>

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26