
org.kuali.ole.mvn.ole-fs-impex.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kuali-deploy Show documentation
Show all versions of kuali-deploy Show documentation
Project containing deployment logic for Kuali applications
The newest version!
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright 2004-2013 The Kuali Foundation Licensed under the Educational Community 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.opensource.org/licenses/ecl2.php 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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>${parent.groupId}</groupId> <artifactId>${parent.artifactId}</artifactId> <version>${parent.version}</version> </parent> <groupId>${project.groupId}</groupId> <artifactId>olefs-impex-clover</artifactId> <version>${project.version}</version> <name>OLE Financial System Impex Clover</name> <description> This pom contains plugin executions for handling OLE Financial System Impex clover data There is a serious flaw in the way the Ant based Impex tooling uses Clover ETL. The JVM must be launched from the same directory as the build.xml file or everything blows up because of a lame hard coded pathing issue related to workspace.prm. It looks for that file using "./workspace.prm" instead of something like "classpath:workspace.prm" or by allowing you to set a property or some other modern day software technique for handling resources without resorting to hard coded file system pathing. </description> <build> <pluginManagement> <plugins> <plugin> <groupId>org.kuali.maven.plugins</groupId> <artifactId>maven-sysprops-plugin</artifactId> <version>1.0.0</version> <executions> <execution> <id>set</id> <phase>validate</phase> <goals> <goal>set</goal> </goals> <configuration> <systemProperties> <property> <name>java.security.egd</name> <value>file:///dev/urandom</value> </property> </systemProperties> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.kuali.maven.plugins</groupId> <artifactId>properties-maven-plugin</artifactId> <version>${plugin.properties.version}</version> <executions> <execution> <id>read</id> <phase>initialize</phase> <goals> <goal>read-project-properties</goal> </goals> <configuration> <locations> <param>${properties.all}</param> <param>classpath:org/kuali/ole/ole-fs-impex-clover.properties</param> </locations> </configuration> </execution> </executions> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>${project.artifactId}</artifactId> <version>${project.version}</version> </dependency> </dependencies> </plugin> <plugin> <artifactId>maven-antrun-plugin</artifactId> <version>${plugin.antrun.version}</version> <executions> <execution> <id>schema</id> <phase>initialize</phase> <goals> <goal>run</goal> </goals> <configuration> <target name="schema"> <property name="maven.plugin.classpath" refid="maven.plugin.classpath" /> <ant antfile="build.xml" dir="." target="check-import-properties" /> <ant antfile="build.xml" dir="." target="create-ddl" /> <ant antfile="build.xml" dir="." target="apply-ddl" /> <ant antfile="build.xml" dir="." target="pre-import-sql" /> <ant antfile="build.xml" dir="." target="import-data" /> <ant antfile="build.xml" dir="." target="import-data2" /> <ant antfile="build.xml" dir="." target="run-liquibase-post-import" /> <ant antfile="build.xml" dir="." target="apply-constraint-ddl" /> <ant antfile="build.xml" dir="." target="post-import-sql" /> </target> </configuration> </execution> </executions> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.kuali.maven.plugins</groupId> <artifactId>maven-sysprops-plugin</artifactId> </plugin> <plugin> <groupId>org.kuali.maven.plugins</groupId> <artifactId>properties-maven-plugin</artifactId> </plugin> <plugin> <artifactId>maven-antrun-plugin</artifactId> </plugin> </plugins> </build> </project>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy