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

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26