Validation-Manager
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.sourceforge.javydreamercsw</groupId> <artifactId>Validation-Manager</artifactId> <version>0.1</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> <artifactId>Validation-Manager</artifactId> <version>0.1</version> <groupId>net.sourceforge.javydreamercsw</groupId> <packaging>pom</packaging> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>9</version> </parent> <name>Validation Manager</name> <url>https://sourceforge.net/projects/validationmgr/</url> <issueManagement> <system>jira</system> <url>https://simple-marauroa.jira.com/browse/JW</url> </issueManagement> <developers> <developer> <id>javydreamercsw</id> <name>Javier A. Ortiz Bultron</name> <roles> <role>admin</role> </roles> </developer> </developers> <licenses> <license> <name>CDDL-1.0</name> <url>http://www.opensource.org/licenses/cddl1.php</url> <comments>Common Development and Distribution License</comments> </license> </licenses> <scm> <url>https://bitbucket.org/javydreamercsw/validation-manager/src</url> <connection>scm:hg:https://bitbucket.org/javydreamercsw/validation-manager/src</connection> <developerConnection>scm:hg:ssh://hg@bitbucket.org/javydreamercsw/validation-manager</developerConnection> <tag>HEAD</tag> </scm> <ciManagement> <system>Jenkins</system> <url>https://xinco.ci.cloudbees.com/</url> </ciManagement> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <vm.version>${project.version}</vm.version> <vaadin.version>7.1.11</vaadin.version> <netbeans.version>RELEASE74</netbeans.version> <jasper.reports.version>5.5.1</jasper.reports.version> </properties> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <version>2.4</version> </plugin> <plugin> <groupId>com.vaadin</groupId> <artifactId>vaadin-maven-plugin</artifactId> <version>${vaadin.version}</version> </plugin> <!-- Compiles your custom GWT components with the GWT compiler --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>gwt-maven-plugin</artifactId> <!-- Version 2.1.0-1 works at least with Vaadin 6.5 --> <version>2.6.0</version> </plugin> <!-- A simple Jetty test server at http://localhost:8084/Validation-Manager-Web can be launched with the Maven goal jetty:run and stopped with jetty:stop --> <plugin> <groupId>org.mortbay.jetty</groupId> <artifactId>maven-jetty-plugin</artifactId> <version>6.1.26</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <version>2.6</version> </plugin> <!--Flyway configuration--> <plugin> <groupId>com.googlecode.flyway</groupId> <artifactId>flyway-maven-plugin</artifactId> <version>2.3.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>3.3</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>jasperreports-maven-plugin</artifactId> <version>1.0-beta-2</version> <dependencies> <!--note this must be repeated here to pick up correct xml validation --> <dependency> <groupId>net.sf.jasperreports</groupId> <artifactId>jasperreports</artifactId> <version>${jasper.reports.version}</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.16</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.2.1</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <inherited>false</inherited> <executions> <execution> <id>install-gsp</id> <phase>validate</phase> <goals> <goal>exec</goal> </goals> <configuration> <executable>mvn</executable> <arguments> <argument>install:install-file</argument> <argument>-Dfile=repo/gudosoft/gsqlparser/gsp/4.2/gsp-4.2.jar</argument> <argument>-DgroupId=gudosoft.gsqlparser</argument> <argument>-DartifactId=gsp</argument> <argument>-Dversion=4.2</argument> <argument>-Dpackaging=jar</argument> </arguments> </configuration> </execution> </executions> </plugin> </plugins> </build> <repositories> <repository> <id>vaadin-snapshots</id> <url>http://oss.sonatype.org/content/repositories/vaadin-snapshots/</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> <repository> <id>vaadin-addons</id> <url>http://maven.vaadin.com/vaadin-addons</url> </repository> <repository> <id>EclipseLink Repo</id> <!-- note that ampersands in this URL are escaped because this is in an xml file - un-escape them to use in browser --> <url>http://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/rt/eclipselink/maven.repo</url> <snapshots> <enabled>true</enabled> </snapshots> </repository> <repository> <id>project.local</id> <name>project</name> <url>file:${project.basedir}/repo</url> </repository> <repository> <id>jasper-reports</id> <url>http://jasperreports.sourceforge.net/maven2</url> </repository> <!-- Repository hosting NetBeans modules, especially APIs. Versions are based on IDE releases, e.g.: RELEASE691 To create your own repository, use: nbm:populate-repository --> <repository> <id>netbeans</id> <name>NetBeans</name> <url>http://bits.netbeans.org/maven2/</url> </repository> <!--To use dev builds <repository> <id>Netbeans-Dev</id> <name>Netbeans Dev</name> <url>http://bits.netbeans.org/nexus/content/repositories/snapshots/</url> <snapshots> <enabled>true</enabled> </snapshots> </repository>--> </repositories> <modules> <module>VM-Core</module> <module>Client</module> <!--<module>ValidationManager</module>--> <!--<module>WebServiceClient</module>--> </modules> </project>