sqlj-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.codehaus.mojo</groupId> <artifactId>sqlj-maven-plugin</artifactId> <version>1.3</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.codehaus.mojo</groupId> <artifactId>mojo-parent</artifactId> <version>32</version> </parent> <artifactId>sqlj-maven-plugin</artifactId> <version>1.3</version> <packaging>maven-plugin</packaging> <name>Mojo's SQLJ Maven Plugin</name> <description>A wrapper around the sqlj.tools.Sqlj SQLJ Translator.</description> <url>http://mojo.codehaus.org/sqlj-maven-plugin/</url> <inceptionYear>2008</inceptionYear> <licenses> <license> <name>The MIT License</name> <url>https://svn.codehaus.org/mojo/trunk/mojo/was6-maven-plugin/LICENSE.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>david</id> <name>David J. M. Karlsen</name> <email>david@codehaus.org</email> <url>http://www.davidkarlsen.com</url> <organization>codehaus.org</organization> <organizationUrl>http://www.codehaus.org</organizationUrl> <roles> <role>developer</role> </roles> <timezone>1</timezone> </developer> <developer> <id>andham</id> <name>Anders Hammar</name> <email>afloom@codehaus.org</email> <timezone>+1</timezone> <roles> <role>Developer</role> </roles> </developer> </developers> <prerequisites> <maven>${mavenVersion}</maven> </prerequisites> <scm> <connection>scm:svn:http://svn.codehaus.org/mojo/tags/sqlj-maven-plugin-1.3</connection> <developerConnection>scm:svn:https://svn.codehaus.org/mojo/tags/sqlj-maven-plugin-1.3</developerConnection> <url>http://fisheye.codehaus.org/browse/mojo/tags/sqlj-maven-plugin-1.3</url> </scm> <issueManagement> <system>jira</system> <url>http://jira.codehaus.org/browse/MSQLJ</url> </issueManagement> <ciManagement /> <properties> <mavenVersion>2.0</mavenVersion> <mavenPluginPluginVersion>3.2</mavenPluginPluginVersion> </properties> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-project</artifactId> <version>${mavenVersion}</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-model</artifactId> <version>${mavenVersion}</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>${mavenVersion}</version> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>${mavenPluginPluginVersion}</version> <scope>provided</scope> </dependency> <dependency> <groupId>commons-beanutils</groupId> <artifactId>commons-beanutils</artifactId> <version>1.8.3</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.4</version> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>2.6</version> </dependency> <dependency> <groupId>org.sonatype.plexus</groupId> <artifactId>plexus-build-api</artifactId> <version>0.0.7</version> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> <version>3.0.15</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <version>${mavenPluginPluginVersion}</version> <configuration> <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound> </configuration> <executions> <execution> <id>mojo-descriptor</id> <goals> <goal>descriptor</goal> </goals> </execution> <execution> <id>help-goal</id> <goals> <goal>helpmojo</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-changes-plugin</artifactId> <version>2.9</version> <configuration> <onlyCurrentVersion>true</onlyCurrentVersion> <columnNames>Type,Key,Summary,Status,Resolution,Assignee</columnNames> <sortColumnNames>Key,Type</sortColumnNames> </configuration> <reportSets> <reportSet> <reports> <report>jira-report</report> </reports> </reportSet> </reportSets> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <version>2.5.2</version> <configuration> <threshold>Normal</threshold> </configuration> </plugin> </plugins> </reporting> <profiles> <profile> <id>run-its</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <executions> <execution> <id>enforce-sqlj-lib-exists</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireFilesExist> <files> <file>${settings.localRepository}/com/ibm/db2/sqlj/1.0/sqlj-1.0.jar</file> </files> <message>The ITs use the SQLJ library as a dependency</message> </requireFilesExist> </rules> <fail>true</fail> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-invoker-plugin</artifactId> <configuration> <debug>true</debug> <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo> <postBuildHookScript>verify</postBuildHookScript> <localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath> <settingsFile>src/it/settings.xml</settingsFile> <goals> <goal>clean</goal> <goal>compile</goal> </goals> </configuration> <executions> <execution> <id>integration-test</id> <goals> <goal>install</goal> <goal>run</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>