You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@turbine.apache.org by pa...@apache.org on 2018/10/06 01:50:43 UTC

svn commit: r1842993 - /turbine/fulcrum/trunk/security/torque/pom.xml

Author: painter
Date: Sat Oct  6 01:50:43 2018
New Revision: 1842993

URL: http://svn.apache.org/viewvc?rev=1842993&view=rev
Log:
Update maven compiler - set to java 1.8

Modified:
    turbine/fulcrum/trunk/security/torque/pom.xml

Modified: turbine/fulcrum/trunk/security/torque/pom.xml
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/security/torque/pom.xml?rev=1842993&r1=1842992&r2=1842993&view=diff
==============================================================================
--- turbine/fulcrum/trunk/security/torque/pom.xml (original)
+++ turbine/fulcrum/trunk/security/torque/pom.xml Sat Oct  6 01:50:43 2018
@@ -1,384 +1,389 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor 
-  license agreements. See the NOTICE file distributed with this work for additional 
-  information regarding copyright ownership. The ASF licenses this file to 
-  You under the Apache License, Version 2.0 (the "License"); you may not use 
-  this file except in compliance with the License. You may obtain a copy of 
-  the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required 
-  by applicable law or agreed to in writing, software distributed under the 
-  License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS 
-  OF ANY KIND, either express or implied. See the License for the specific 
-  language governing permissions and limitations under the License. -->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
-  <parent>
-    <artifactId>fulcrum-security</artifactId>
-    <groupId>org.apache.fulcrum</groupId>
-    <version>1.1.3-SNAPSHOT</version>
-    <relativePath>../pom.xml</relativePath>
-  </parent>
-  <modelVersion>4.0.0</modelVersion>
-  <artifactId>fulcrum-security-torque</artifactId>
-  <version>1.1.3-SNAPSHOT</version>
-  <name>Fulcrum Security Torque Impl</name>
-  <description>
-    Fulcrum Security Torque Impl is an implementation of the Fulcrum Security API
-    that uses Apache DB Torque as a database backend.
-  </description>
-  <url>http://turbine.apache.org/fulcrum/fulcrum-security/fulcrum-security-torque</url>
-  <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/turbine/fulcrum/trunk/security/torque/</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/turbine/fulcrum/trunk/security/torque/</developerConnection>
-    <url>http://svn.apache.org/viewvc/turbine/fulcrum/trunk/security/torque/</url>
-  </scm>
-
-   <properties>
-        <torque.om>org.apache.fulcrum.security.torque.om</torque.om>
-        <torque.om.path>org/apache/fulcrum/security/torque/om</torque.om.path>
-   </properties>
-  <build>
-    <sourceDirectory>src/java</sourceDirectory>
-    <testSourceDirectory>src/test</testSourceDirectory>
-
-    <plugins>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-surefire-plugin</artifactId>
-        <configuration>
-          <forkMode>perTest</forkMode>
-        </configuration>
-      </plugin>
-    </plugins>
-  </build>
-
-  <dependencies>
-    <dependency>
-      <groupId>org.apache.fulcrum</groupId>
-      <artifactId>fulcrum-security-api</artifactId>
-    </dependency>
-    <dependency>
-      <groupId>org.apache.torque</groupId>
-      <artifactId>torque-runtime</artifactId>
-      <version>4.0</version>
-    </dependency>
-    <dependency>
-      <groupId>org.apache.fulcrum</groupId>
-      <artifactId>fulcrum-security-api</artifactId>
-      <type>test-jar</type>
-      <scope>test</scope>
-    </dependency>
-	<dependency>
-	    <groupId>org.hsqldb</groupId>
-	    <artifactId>hsqldb</artifactId>
-	    <version>1.8.0.10</version>
-	    <scope>test</scope>
-	</dependency>
-	
-	<!-- testing dependencies -->
-	<dependency>
-	    <groupId>javax.servlet</groupId>
-	    <artifactId>javax.servlet-api</artifactId>
-	    <version>3.1.0</version>
-	    <scope>test</scope>
-	</dependency>
-	<dependency>
-	    <groupId>org.apache.fulcrum</groupId>
-	    <artifactId>fulcrum-testcontainer</artifactId>
-	    <version>1.0.8-SNAPSHOT</version>
-	    <scope>test</scope>
-	</dependency>
-	<dependency>
-	    <groupId>org.apache.fulcrum</groupId>
-	    <artifactId>fulcrum-yaafi</artifactId>
-	    <version>1.0.8-SNAPSHOT</version>
-	    <scope>test</scope>
-	</dependency>
-  </dependencies>
-
-  <profiles>
-    <profile>
-      <id>torque-generate-off</id>
-    </profile>
-    <profile>
-      <id>torque-generate</id>
-      <activation>
-        <activeByDefault>true</activeByDefault>
-      </activation>
-      <build>
-        <plugins>
-          <plugin>
-            <groupId>org.apache.torque</groupId>
-            <artifactId>torque-maven-plugin</artifactId>
-            <version>4.0</version>
-            <executions>
-              <execution>
-                <id>torque-om</id>
-                <phase>generate-sources</phase>
-                <goals>
-                  <goal>generate</goal>
-                </goals>
-                <configuration>
-                  <packaging>classpath</packaging>
-                  <configPackage>org.apache.torque.templates.om</configPackage>
-                  <sourceDir>${project.basedir}/schema</sourceDir>
-                  <loglevel>error</loglevel>
-                  <options>
-                    <torque.database>mysql</torque.database>
-                    <torque.om.package>${torque.om}</torque.om.package>
-                    <torque.om.addGetByNameMethods>false</torque.om.addGetByNameMethods>
-                    <torque.om.save.saveException>TorqueException</torque.om.save.saveException>
-                    <torque.om.useIsForBooleanGetters>true</torque.om.useIsForBooleanGetters>
-                  </options>
-                  <outputDirMap>
-                    <modifiable>${project.build.sourceDirectory}</modifiable>
-                  </outputDirMap>
-                </configuration>
-              </execution>
-              <execution>
-                <id>torque-sql-mysql</id>
-                <phase>package</phase>
-                <goals>
-                  <goal>generate</goal>
-                </goals>
-                <configuration>
-                  <packaging>classpath</packaging>
-                  <configPackage>org.apache.torque.templates.sql</configPackage>
-                  <sourceDir>${project.basedir}/schema</sourceDir>
-                  <defaultOutputDir>${project.build.directory}/generated-sql/torque/mysql</defaultOutputDir>
-                  <defaultOutputDirUsage>none</defaultOutputDirUsage>
-                  <loglevel>error</loglevel>
-                  <options>
-                    <torque.database>mysql</torque.database>
-                  </options>
-                </configuration>
-              </execution>
-              <execution>
-                <id>torque-sql-hsqldb</id>
-                <phase>package</phase>
-                <goals>
-                  <goal>generate</goal>
-                </goals>
-                <configuration>
-                  <packaging>classpath</packaging>
-                  <configPackage>org.apache.torque.templates.sql</configPackage>
-                  <sourceDir>${project.basedir}/schema</sourceDir>
-                  <defaultOutputDir>${project.build.directory}/generated-sql/torque/hsqldb</defaultOutputDir>
-                  <defaultOutputDirUsage>none</defaultOutputDirUsage>
-                  <loglevel>error</loglevel>
-                  <options>
-                    <torque.database>hsqldb</torque.database>
-                  </options>
-                </configuration>
-              </execution>
-              <execution>
-                <id>torque-sql-derby</id>
-                <phase>package</phase>
-                <goals>
-                  <goal>generate</goal>
-                </goals>
-                <configuration>
-                  <packaging>classpath</packaging>
-                  <configPackage>org.apache.torque.templates.sql</configPackage>
-                  <sourceDir>${project.basedir}/schema</sourceDir>
-                  <defaultOutputDir>${project.build.directory}/generated-sql/torque/derby</defaultOutputDir>
-                  <defaultOutputDirUsage>none</defaultOutputDirUsage>
-                  <loglevel>error</loglevel>
-                  <options>
-                    <torque.database>derby</torque.database>
-                  </options>
-                </configuration>
-              </execution>
-              <execution>
-                <id>torque-sql-oracle</id>
-                <phase>package</phase>
-                <goals>
-                  <goal>generate</goal>
-                </goals>
-                <configuration>
-                  <packaging>classpath</packaging>
-                  <configPackage>org.apache.torque.templates.sql</configPackage>
-                  <sourceDir>${project.basedir}/schema</sourceDir>
-                  <defaultOutputDir>${project.build.directory}/generated-sql/torque/oracle</defaultOutputDir>
-                  <defaultOutputDirUsage>none</defaultOutputDirUsage>
-                  <loglevel>error</loglevel>
-                  <options>
-                    <torque.database>oracle</torque.database>
-                  </options>
-                </configuration>
-              </execution>
-              <execution>
-                <id>torque-sql-postgresql</id>
-                <phase>package</phase>
-                <goals>
-                  <goal>generate</goal>
-                </goals>
-                <configuration>
-                  <packaging>classpath</packaging>
-                  <configPackage>org.apache.torque.templates.sql</configPackage>
-                  <sourceDir>${project.basedir}/schema</sourceDir>
-                  <defaultOutputDir>${project.build.directory}/generated-sql/torque/postgresql</defaultOutputDir>
-                  <defaultOutputDirUsage>none</defaultOutputDirUsage>
-                  <loglevel>error</loglevel>
-                  <options>
-                    <torque.database>postgresql</torque.database>
-                  </options>
-                </configuration>
-              </execution>
-              <execution>
-                <id>torque-sql-mssql</id>
-                <phase>package</phase>
-                <goals>
-                  <goal>generate</goal>
-                </goals>
-                <configuration>
-                  <packaging>classpath</packaging>
-                  <configPackage>org.apache.torque.templates.sql</configPackage>
-                  <sourceDir>${project.basedir}/schema</sourceDir>
-                  <defaultOutputDir>${project.build.directory}/generated-sql/torque/mssql</defaultOutputDir>
-                  <defaultOutputDirUsage>none</defaultOutputDirUsage>
-                  <loglevel>error</loglevel>
-                  <options>
-                    <torque.database>mssql</torque.database>
-                  </options>
-                </configuration>
-              </execution>
-
-              <execution>
-                <id>torque-idtable-mysql</id>
-                <phase>package</phase>
-                <goals>
-                  <goal>generate</goal>
-                </goals>
-                <configuration>
-                  <packaging>classpath</packaging>
-                  <configPackage>org.apache.torque.templates.idtable</configPackage>
-                  <sourceDir>${project.basedir}/schema</sourceDir>
-                  <defaultOutputDir>${project.build.directory}/generated-sql/torque/mysql</defaultOutputDir>
-                  <defaultOutputDirUsage>none</defaultOutputDirUsage>
-                  <loglevel>error</loglevel>
-                  <options>
-                    <torque.database>mysql</torque.database>
-                  </options>
-                </configuration>
-              </execution>
-              <execution>
-                <id>torque-idtable-hsqldb</id>
-                <phase>package</phase>
-                <goals>
-                  <goal>generate</goal>
-                </goals>
-                <configuration>
-                  <packaging>classpath</packaging>
-                  <configPackage>org.apache.torque.templates.idtable</configPackage>
-                  <sourceDir>${project.basedir}/schema</sourceDir>
-                  <defaultOutputDir>${project.build.directory}/generated-sql/torque/hsqldb</defaultOutputDir>
-                  <defaultOutputDirUsage>none</defaultOutputDirUsage>
-                  <loglevel>error</loglevel>
-                  <options>
-                    <torque.database>hsqldb</torque.database>
-                  </options>
-                </configuration>
-              </execution>
-              <execution>
-                <id>torque-idtable-derby</id>
-                <phase>package</phase>
-                <goals>
-                  <goal>generate</goal>
-                </goals>
-                <configuration>
-                  <packaging>classpath</packaging>
-                  <configPackage>org.apache.torque.templates.idtable</configPackage>
-                  <sourceDir>${project.basedir}/schema</sourceDir>
-                  <defaultOutputDir>${project.build.directory}/generated-sql/torque/derby</defaultOutputDir>
-                  <defaultOutputDirUsage>none</defaultOutputDirUsage>
-                  <loglevel>error</loglevel>
-                  <options>
-                    <torque.database>derby</torque.database>
-                  </options>
-                </configuration>
-              </execution>
-              <execution>
-                <id>torque-idtable-oracle</id>
-                <phase>package</phase>
-                <goals>
-                  <goal>generate</goal>
-                </goals>
-                <configuration>
-                  <packaging>classpath</packaging>
-                  <configPackage>org.apache.torque.templates.idtable</configPackage>
-                  <sourceDir>${project.basedir}/schema</sourceDir>
-                  <defaultOutputDir>${project.build.directory}/generated-sql/torque/oracle</defaultOutputDir>
-                  <defaultOutputDirUsage>none</defaultOutputDirUsage>
-                  <loglevel>error</loglevel>
-                  <options>
-                    <torque.database>oracle</torque.database>
-                  </options>
-                </configuration>
-              </execution>
-              <execution>
-                <id>torque-idtable-postgresql</id>
-                <phase>package</phase>
-                <goals>
-                  <goal>generate</goal>
-                </goals>
-                <configuration>
-                  <packaging>classpath</packaging>
-                  <configPackage>org.apache.torque.templates.idtable</configPackage>
-                  <sourceDir>${project.basedir}/schema</sourceDir>
-                  <defaultOutputDir>${project.build.directory}/generated-sql/torque/postgresql</defaultOutputDir>
-                  <defaultOutputDirUsage>none</defaultOutputDirUsage>
-                  <loglevel>error</loglevel>
-                  <options>
-                    <torque.database>postgresql</torque.database>
-                  </options>
-                </configuration>
-              </execution>
-              <execution>
-                <id>torque-idtable-mssql</id>
-                <phase>package</phase>
-                <goals>
-                  <goal>generate</goal>
-                </goals>
-                <configuration>
-                  <packaging>classpath</packaging>
-                  <configPackage>org.apache.torque.templates.idtable</configPackage>
-                  <sourceDir>${project.basedir}/schema</sourceDir>
-                  <defaultOutputDir>${project.build.directory}/generated-sql/torque/mssql</defaultOutputDir>
-                  <defaultOutputDirUsage>none</defaultOutputDirUsage>
-                  <loglevel>error</loglevel>
-                  <options>
-                    <torque.database>mssql</torque.database>
-                  </options>
-                </configuration>
-              </execution>
-            </executions>
-            <dependencies>
-              <dependency>
-                <groupId>org.apache.torque</groupId>
-                <artifactId>torque-templates</artifactId>
-                <version>4.0</version>
-              </dependency>
-            </dependencies>
-          </plugin>
-          <plugin><!-- clean up for torque-generate sources mysql  -->
-              <artifactId>maven-clean-plugin</artifactId>
-              <version>3.1.0</version>
-              <configuration>
-                  <filesets>
-                       <fileSet>
-                          <directory>${project.build.sourceDirectory}/${torque.om.path}</directory>
-                          <excludes><!-- no peer interface configurable in Torque 4.0 --> 
-                            <exclude>TurbineUserPeerImpl.java</exclude>
-                            <exclude>TurbineGroupPeerImpl.java</exclude>
-                            <exclude>TurbineRolePeerImpl.java</exclude>
-                            <exclude>TurbinePermissionPeerImpl.java</exclude>
-                            <exclude>TurbineUserGroupRolePeerImpl.java</exclude>
-                          </excludes>
-                        </fileSet>
-                  </filesets>
-              </configuration>
-           </plugin>
-        </plugins>
-      </build>
-    </profile>
-  </profiles>
-</project>
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor 
+	license agreements. See the NOTICE file distributed with this work for additional 
+	information regarding copyright ownership. The ASF licenses this file to 
+	You under the Apache License, Version 2.0 (the "License"); you may not use 
+	this file except in compliance with the License. You may obtain a copy of 
+	the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required 
+	by applicable law or agreed to in writing, software distributed under the 
+	License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS 
+	OF ANY KIND, either express or implied. See the License for the specific 
+	language governing permissions and limitations under the License. -->
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+	<parent>
+		<artifactId>fulcrum-security</artifactId>
+		<groupId>org.apache.fulcrum</groupId>
+		<version>1.1.3-SNAPSHOT</version>
+		<relativePath>../pom.xml</relativePath>
+	</parent>
+	<modelVersion>4.0.0</modelVersion>
+	<artifactId>fulcrum-security-torque</artifactId>
+	<version>1.1.3-SNAPSHOT</version>
+	<name>Fulcrum Security Torque Impl</name>
+	<description>
+    Fulcrum Security Torque Impl is an implementation of the Fulcrum Security API
+    that uses Apache DB Torque as a database backend.
+  </description>
+	<url>http://turbine.apache.org/fulcrum/fulcrum-security/fulcrum-security-torque</url>
+	<scm>
+		<connection>scm:svn:http://svn.apache.org/repos/asf/turbine/fulcrum/trunk/security/torque/</connection>
+		<developerConnection>scm:svn:https://svn.apache.org/repos/asf/turbine/fulcrum/trunk/security/torque/</developerConnection>
+		<url>http://svn.apache.org/viewvc/turbine/fulcrum/trunk/security/torque/</url>
+	</scm>
+
+	<properties>
+		<project.build.sourceEncoding>ISO-8859-1</project.build.sourceEncoding>
+		<maven.compiler.source>1.8</maven.compiler.source>
+		<maven.compiler.target>1.8</maven.compiler.target>
+		<torque.om>org.apache.fulcrum.security.torque.om</torque.om>
+		<torque.om.path>org/apache/fulcrum/security/torque/om</torque.om.path>
+	</properties>
+	<build>
+		<sourceDirectory>src/java</sourceDirectory>
+		<testSourceDirectory>src/test</testSourceDirectory>
+
+		<plugins>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-surefire-plugin</artifactId>
+				<configuration>
+					<forkMode>perTest</forkMode>
+				</configuration>
+			</plugin>
+		</plugins>
+	</build>
+
+	<dependencies>
+		<dependency>
+			<groupId>org.apache.fulcrum</groupId>
+			<artifactId>fulcrum-security-api</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.torque</groupId>
+			<artifactId>torque-runtime</artifactId>
+			<version>4.0</version>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.fulcrum</groupId>
+			<artifactId>fulcrum-security-api</artifactId>
+			<type>test-jar</type>
+			<scope>test</scope>
+		</dependency>
+		<dependency>
+		    <groupId>hsqldb</groupId>
+		    <artifactId>hsqldb</artifactId>
+		    <version>1.8.0.10</version>
+		    <scope>test</scope>
+		</dependency>
+
+		<!-- testing dependencies -->
+		<dependency>
+			<groupId>javax.servlet</groupId>
+			<artifactId>javax.servlet-api</artifactId>
+			<version>3.1.0</version>
+			<scope>test</scope>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.fulcrum</groupId>
+			<artifactId>fulcrum-testcontainer</artifactId>
+			<version>1.0.8-SNAPSHOT</version>
+			<scope>test</scope>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.fulcrum</groupId>
+			<artifactId>fulcrum-yaafi</artifactId>
+			<version>1.0.8-SNAPSHOT</version>
+			<scope>test</scope>
+		</dependency>
+	</dependencies>
+
+	<profiles>
+		<profile>
+			<id>torque-generate-off</id>
+		</profile>
+		<profile>
+			<id>torque-generate</id>
+			<activation>
+				<activeByDefault>true</activeByDefault>
+			</activation>
+			<build>
+				<plugins>
+					<plugin>
+						<groupId>org.apache.torque</groupId>
+						<artifactId>torque-maven-plugin</artifactId>
+						<version>4.0</version>
+						<executions>
+							<execution>
+								<id>torque-om</id>
+								<phase>generate-sources</phase>
+								<goals>
+									<goal>generate</goal>
+								</goals>
+								<configuration>
+									<packaging>classpath</packaging>
+									<configPackage>org.apache.torque.templates.om</configPackage>
+									<sourceDir>${project.basedir}/schema</sourceDir>
+									<loglevel>error</loglevel>
+									<options>
+										<torque.database>mysql</torque.database>
+										<torque.om.package>${torque.om}</torque.om.package>
+										<torque.om.addGetByNameMethods>false</torque.om.addGetByNameMethods>
+										<torque.om.save.saveException>TorqueException</torque.om.save.saveException>
+										<torque.om.useIsForBooleanGetters>true</torque.om.useIsForBooleanGetters>
+									</options>
+									<outputDirMap>
+										<modifiable>${project.build.sourceDirectory}</modifiable>
+									</outputDirMap>
+								</configuration>
+							</execution>
+							<execution>
+								<id>torque-sql-mysql</id>
+								<phase>package</phase>
+								<goals>
+									<goal>generate</goal>
+								</goals>
+								<configuration>
+									<packaging>classpath</packaging>
+									<configPackage>org.apache.torque.templates.sql</configPackage>
+									<sourceDir>${project.basedir}/schema</sourceDir>
+									<defaultOutputDir>${project.build.directory}/generated-sql/torque/mysql</defaultOutputDir>
+									<defaultOutputDirUsage>none</defaultOutputDirUsage>
+									<loglevel>error</loglevel>
+									<options>
+										<torque.database>mysql</torque.database>
+									</options>
+								</configuration>
+							</execution>
+							<execution>
+								<id>torque-sql-hsqldb</id>
+								<phase>package</phase>
+								<goals>
+									<goal>generate</goal>
+								</goals>
+								<configuration>
+									<packaging>classpath</packaging>
+									<configPackage>org.apache.torque.templates.sql</configPackage>
+									<sourceDir>${project.basedir}/schema</sourceDir>
+									<defaultOutputDir>${project.build.directory}/generated-sql/torque/hsqldb</defaultOutputDir>
+									<defaultOutputDirUsage>none</defaultOutputDirUsage>
+									<loglevel>error</loglevel>
+									<options>
+										<torque.database>hsqldb</torque.database>
+									</options>
+								</configuration>
+							</execution>
+							<execution>
+								<id>torque-sql-derby</id>
+								<phase>package</phase>
+								<goals>
+									<goal>generate</goal>
+								</goals>
+								<configuration>
+									<packaging>classpath</packaging>
+									<configPackage>org.apache.torque.templates.sql</configPackage>
+									<sourceDir>${project.basedir}/schema</sourceDir>
+									<defaultOutputDir>${project.build.directory}/generated-sql/torque/derby</defaultOutputDir>
+									<defaultOutputDirUsage>none</defaultOutputDirUsage>
+									<loglevel>error</loglevel>
+									<options>
+										<torque.database>derby</torque.database>
+									</options>
+								</configuration>
+							</execution>
+							<execution>
+								<id>torque-sql-oracle</id>
+								<phase>package</phase>
+								<goals>
+									<goal>generate</goal>
+								</goals>
+								<configuration>
+									<packaging>classpath</packaging>
+									<configPackage>org.apache.torque.templates.sql</configPackage>
+									<sourceDir>${project.basedir}/schema</sourceDir>
+									<defaultOutputDir>${project.build.directory}/generated-sql/torque/oracle</defaultOutputDir>
+									<defaultOutputDirUsage>none</defaultOutputDirUsage>
+									<loglevel>error</loglevel>
+									<options>
+										<torque.database>oracle</torque.database>
+									</options>
+								</configuration>
+							</execution>
+							<execution>
+								<id>torque-sql-postgresql</id>
+								<phase>package</phase>
+								<goals>
+									<goal>generate</goal>
+								</goals>
+								<configuration>
+									<packaging>classpath</packaging>
+									<configPackage>org.apache.torque.templates.sql</configPackage>
+									<sourceDir>${project.basedir}/schema</sourceDir>
+									<defaultOutputDir>${project.build.directory}/generated-sql/torque/postgresql</defaultOutputDir>
+									<defaultOutputDirUsage>none</defaultOutputDirUsage>
+									<loglevel>error</loglevel>
+									<options>
+										<torque.database>postgresql</torque.database>
+									</options>
+								</configuration>
+							</execution>
+							<execution>
+								<id>torque-sql-mssql</id>
+								<phase>package</phase>
+								<goals>
+									<goal>generate</goal>
+								</goals>
+								<configuration>
+									<packaging>classpath</packaging>
+									<configPackage>org.apache.torque.templates.sql</configPackage>
+									<sourceDir>${project.basedir}/schema</sourceDir>
+									<defaultOutputDir>${project.build.directory}/generated-sql/torque/mssql</defaultOutputDir>
+									<defaultOutputDirUsage>none</defaultOutputDirUsage>
+									<loglevel>error</loglevel>
+									<options>
+										<torque.database>mssql</torque.database>
+									</options>
+								</configuration>
+							</execution>
+
+							<execution>
+								<id>torque-idtable-mysql</id>
+								<phase>package</phase>
+								<goals>
+									<goal>generate</goal>
+								</goals>
+								<configuration>
+									<packaging>classpath</packaging>
+									<configPackage>org.apache.torque.templates.idtable</configPackage>
+									<sourceDir>${project.basedir}/schema</sourceDir>
+									<defaultOutputDir>${project.build.directory}/generated-sql/torque/mysql</defaultOutputDir>
+									<defaultOutputDirUsage>none</defaultOutputDirUsage>
+									<loglevel>error</loglevel>
+									<options>
+										<torque.database>mysql</torque.database>
+									</options>
+								</configuration>
+							</execution>
+							<execution>
+								<id>torque-idtable-hsqldb</id>
+								<phase>package</phase>
+								<goals>
+									<goal>generate</goal>
+								</goals>
+								<configuration>
+									<packaging>classpath</packaging>
+									<configPackage>org.apache.torque.templates.idtable</configPackage>
+									<sourceDir>${project.basedir}/schema</sourceDir>
+									<defaultOutputDir>${project.build.directory}/generated-sql/torque/hsqldb</defaultOutputDir>
+									<defaultOutputDirUsage>none</defaultOutputDirUsage>
+									<loglevel>error</loglevel>
+									<options>
+										<torque.database>hsqldb</torque.database>
+									</options>
+								</configuration>
+							</execution>
+							<execution>
+								<id>torque-idtable-derby</id>
+								<phase>package</phase>
+								<goals>
+									<goal>generate</goal>
+								</goals>
+								<configuration>
+									<packaging>classpath</packaging>
+									<configPackage>org.apache.torque.templates.idtable</configPackage>
+									<sourceDir>${project.basedir}/schema</sourceDir>
+									<defaultOutputDir>${project.build.directory}/generated-sql/torque/derby</defaultOutputDir>
+									<defaultOutputDirUsage>none</defaultOutputDirUsage>
+									<loglevel>error</loglevel>
+									<options>
+										<torque.database>derby</torque.database>
+									</options>
+								</configuration>
+							</execution>
+							<execution>
+								<id>torque-idtable-oracle</id>
+								<phase>package</phase>
+								<goals>
+									<goal>generate</goal>
+								</goals>
+								<configuration>
+									<packaging>classpath</packaging>
+									<configPackage>org.apache.torque.templates.idtable</configPackage>
+									<sourceDir>${project.basedir}/schema</sourceDir>
+									<defaultOutputDir>${project.build.directory}/generated-sql/torque/oracle</defaultOutputDir>
+									<defaultOutputDirUsage>none</defaultOutputDirUsage>
+									<loglevel>error</loglevel>
+									<options>
+										<torque.database>oracle</torque.database>
+									</options>
+								</configuration>
+							</execution>
+							<execution>
+								<id>torque-idtable-postgresql</id>
+								<phase>package</phase>
+								<goals>
+									<goal>generate</goal>
+								</goals>
+								<configuration>
+									<packaging>classpath</packaging>
+									<configPackage>org.apache.torque.templates.idtable</configPackage>
+									<sourceDir>${project.basedir}/schema</sourceDir>
+									<defaultOutputDir>${project.build.directory}/generated-sql/torque/postgresql</defaultOutputDir>
+									<defaultOutputDirUsage>none</defaultOutputDirUsage>
+									<loglevel>error</loglevel>
+									<options>
+										<torque.database>postgresql</torque.database>
+									</options>
+								</configuration>
+							</execution>
+							<execution>
+								<id>torque-idtable-mssql</id>
+								<phase>package</phase>
+								<goals>
+									<goal>generate</goal>
+								</goals>
+								<configuration>
+									<packaging>classpath</packaging>
+									<configPackage>org.apache.torque.templates.idtable</configPackage>
+									<sourceDir>${project.basedir}/schema</sourceDir>
+									<defaultOutputDir>${project.build.directory}/generated-sql/torque/mssql</defaultOutputDir>
+									<defaultOutputDirUsage>none</defaultOutputDirUsage>
+									<loglevel>error</loglevel>
+									<options>
+										<torque.database>mssql</torque.database>
+									</options>
+								</configuration>
+							</execution>
+						</executions>
+						<dependencies>
+							<dependency>
+								<groupId>org.apache.torque</groupId>
+								<artifactId>torque-templates</artifactId>
+								<version>4.0</version>
+							</dependency>
+						</dependencies>
+					</plugin>
+					<plugin><!-- clean up for torque-generate sources mysql -->
+						<artifactId>maven-clean-plugin</artifactId>
+						<version>3.1.0</version>
+						<configuration>
+							<filesets>
+								<fileSet>
+									<directory>${project.build.sourceDirectory}/${torque.om.path}</directory>
+									<excludes><!-- no peer interface configurable in Torque 4.0 -->
+										<exclude>TurbineUserPeerImpl.java</exclude>
+										<exclude>TurbineGroupPeerImpl.java</exclude>
+										<exclude>TurbineRolePeerImpl.java</exclude>
+										<exclude>TurbinePermissionPeerImpl.java</exclude>
+										<exclude>TurbineUserGroupRolePeerImpl.java</exclude>
+									</excludes>
+								</fileSet>
+							</filesets>
+						</configuration>
+					</plugin>
+				</plugins>
+			</build>
+		</profile>
+	</profiles>
+</project>