javg
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>se.vgregion.javg</groupId> <artifactId>javg</artifactId> <version>1.9</version> </dependency>
<?xml version="1.0"?> <!-- Copyright 2009 Västa Götalandsregionen This library is free software; you can redistribute it and/or modify it under the terms of version 2.1 of the GNU Lesser General Public License as published by the Free Software Foundation. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA --> <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> <groupId>se.vgregion.javg</groupId> <artifactId>javg</artifactId> <packaging>pom</packaging> <version>1.9</version> <name>${project.artifactId}</name> <description>Maven plugin for creating projects in the oppna-program community</description> <url>http://oppna-program.googlecode.com</url> <licenses> <license> <name>GNU Lesser General Public License</name> <url>http://www.gnu.org/licenses/lgpl.txt</url> <distribution>repo</distribution> <comments>The LGPL places copyleft restrictions on the program itself but does not apply these restrictions to other software that merely links with the program.</comments> </license> </licenses> <developers> <developer> <id>hangy2</id> <name>Hans Gyllensten</name> <organization>Västra Götalandsregionen</organization> <organizationUrl>http://www.vgregion.se</organizationUrl> <roles> <role>architect</role> </roles> <timezone>+1</timezone> </developer> <developer> <id>aasplund</id> <name>Anders Asplund</name> <organization>Logica</organization> <organizationUrl>http://www.logica.com</organizationUrl> <roles> <role>developer</role> </roles> <timezone>+1</timezone> </developer> <developer> <id>jonas.liljenfeldt</id> <name>Jonas Liljenfeldt</name> <organization>Know IT</organization> <organizationUrl>http://www.knowit.se</organizationUrl> <roles> <role>developer</role> </roles> <timezone>+1</timezone> </developer> <developer> <id>argoyle</id> <name>Joakim Olsson</name> <organization>Unbound</organization> <organizationUrl>http://www.unbound.se</organizationUrl> <roles> <role>developer</role> </roles> <timezone>+1</timezone> </developer> <developer> <id>patbe5</id> <name>Patrik Björk</name> <organization>Codespirit</organization> <roles> <role>developer</role> </roles> <timezone>+1</timezone> </developer> </developers> <modules> <module>tools</module> </modules> <scm> <developerConnection>scm:git:https://github.com/Vastra-Gotalandsregionen/oppna-program.git</developerConnection> <url>https://github.com/Vastra-Gotalandsregionen/oppna-program</url> <tag>javg-1.9</tag> </scm> <distributionManagement> <snapshotRepository> <id>sonatype-nexus</id> <name>Sonatype Nexus Snapshots</name> <url>http://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>sonatype-nexus</id> <name>Sonatype Nexus Releases</name> <url>http://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> </distributionManagement> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> </plugin> </plugins> </pluginManagement> </build> <profiles> <profile> <id>release-sign-artifacts</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.4</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>