All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.kuali.common.deploy.mvn.generatesql.xml Maven / Gradle / Ivy

There is a newer version: 3.0.9
Show 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>kuali-gensql</artifactId>
  <version>${project.version}</version>
  <name>Kuali Generate SQL</name>
  <description>This pom contains plugin executions for generating SQL from an Impex data set</description>
  <build>
    <pluginManagement>
      <plugins>
        <plugin>
          <groupId>org.kuali.maven.plugins</groupId>
          <artifactId>maven-impex-plugin</artifactId>
          <version>${plugin.impex.version}</version>
          <configuration>
            <targetDatabase>${db.vendor}</targetDatabase>
            <dataXMLDir>${project.build.directory}/classes/xml</dataXMLDir>
            <schemaDir>${project.build.directory}/classes</schemaDir>
            <schemaXMLFile>${project.build.directory}/classes/${impex.schema.name}.xml</schemaXMLFile>
            <includeVersionInComment>false</includeVersionInComment>
            <antCompatibilityMode>false</antCompatibilityMode>
          </configuration>
          <executions>
            <execution>
              <id>dtd</id>
              <phase>initialize</phase>
              <goals>
                <goal>datadtd</goal>
              </goals>
              <configuration>
                <outputDir>${project.build.directory}/classes</outputDir>
              </configuration>
            </execution>
            <execution>
              <id>sql</id>
              <phase>initialize</phase>
              <goals>
                <goal>schemasql</goal>
                <goal>datasql</goal>
              </goals>
              <configuration>
                <schemaIncludes>${impex.schema.name}.xml</schemaIncludes>
                <dataDTD>${project.build.directory}/classes/${impex.schema.name}.dtd</dataDTD>
              </configuration>
            </execution>
          </executions>
        </plugin>
      </plugins>
    </pluginManagement>
    <plugins>
      <plugin>
        <groupId>org.kuali.maven.plugins</groupId>
        <artifactId>maven-impex-plugin</artifactId>
      </plugin>
    </plugins>
  </build>
</project>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy