jdbc-proc-archetype
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.googlecode.jdbc-proc</groupId> <artifactId>jdbc-proc-archetype</artifactId> <version>1.0-5</version> </dependency>
<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> <packaging>jar</packaging> <artifactId>jdbc-proc-archetype</artifactId> <groupId>com.googlecode.jdbc-proc</groupId> <version>1.0-5</version> <name>jdbc-proc-archetype ${version}</name> <description>Creates simple project with jdbc-proc support</description> <url>http://jdbc-proc.googlecode.com</url> <scm> <connection>scm:svn:http://jdbc-proc.googlecode.com/svn/tags/jdbc-proc-archetype-1.0-5</connection> <developerConnection>scm:svn:https://jdbc-proc.googlecode.com/svn/tags/jdbc-proc-archetype-1.0-5</developerConnection> <url>http://http://code.google.com/p/jdbc-proc/source/browse/tags/jdbc-proc-archetype-1.0-5</url> </scm> <developers> <developer> <name>Evgeniy Sinev</name> <email>esinev@gmail.com</email> </developer> <developer> <email>gendlin@gmail.com</email> </developer> <developer> <email>mgoryachkin@gmail.com</email> </developer> <developer> <email>kuccyp@gmail.com</email> </developer> <developer> <email>slava.zarubin@gmail.com</email> </developer> <developer> <email>roman.puchkovskiy@gmail.com</email> </developer> <developer> <email>sfkononov@gmail.com</email> </developer> </developers> <!-- - Distributions --> <distributionManagement> <repository> <id>jdbc-proc-release</id> <name>sonatype oss RELEASE repository</name> <url>http://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> <snapshotRepository> <id>jdbc-proc-snapshot</id> <name>sonatype oss SNAPSHOT repository</name> <url>http://oss.sonatype.org/content/repositories/snapshots</url> <uniqueVersion>false</uniqueVersion> </snapshotRepository> </distributionManagement> <build> <plugins> <plugin> <inherited>true</inherited> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</target> <optimise>true</optimise> <debug>true</debug> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-eclipse-plugin</artifactId> <configuration> <downloadSources>true</downloadSources> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-idea-plugin</artifactId> <configuration> <downloadSources>true</downloadSources> </configuration> </plugin> </plugins> </build> <!-- signs artifacts. This profile will be activated when the value of maven property performRelease is true --> <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> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> </project>