jdbc-proc
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.googlecode.jdbc-proc.jdbc-proc</groupId> <artifactId>jdbc-proc</artifactId> <version>1.0-35</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>pom</packaging> <artifactId>jdbc-proc</artifactId> <groupId>com.googlecode.jdbc-proc.jdbc-proc</groupId> <version>1.0-35</version> <name>jdbc-proc ${version}</name> <description>A java persistence engine for stored procedures</description> <url>http://jdbc-proc.googlecode.com</url> <modules> <module>jdbc-proc-daofactory</module> <module>jdbc-proc-integration-test</module> </modules> <scm> <connection>scm:svn:http://jdbc-proc.googlecode.com/svn/tags/jdbc-proc-1.0-35</connection> <developerConnection>scm:svn:https://jdbc-proc.googlecode.com/svn/tags/jdbc-proc-1.0-35</developerConnection> <url>http://code.google.com/p/jdbc-proc/source/browse/tags/jdbc-proc-1.0-35</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> <dependencyManagement> <dependencies> <!-- JDBC PROC --> <dependency> <groupId>com.googlecode.jdbc-proc.jdbc-proc</groupId> <artifactId>jdbc-proc-daofactory</artifactId> <version>1.0-35</version> </dependency> <!-- SPRING --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>${spring.version}</version> <scope>provided</scope> <exclusions> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-jdbc</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> <version>2.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>1.3.9</version> </dependency> <!-- SLF4J --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.14</version> </dependency> <dependency> <groupId>velocity</groupId> <artifactId>velocity</artifactId> <version>1.5</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.4</version> <scope>test</scope> </dependency> <!-- JPA --> <dependency> <groupId>javax.persistence</groupId> <artifactId>persistence-api</artifactId> <version>1.0</version> </dependency> <!-- DBCP --> <dependency> <groupId>commons-dbcp</groupId> <artifactId>commons-dbcp</artifactId> <version>1.2.2</version> <scope>test</scope> </dependency> <!-- mysql driver --> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.6</version> <scope>test</scope> </dependency> </dependencies> </dependencyManagement> <build> <plugins> <plugin> <inherited>true</inherited> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.5</source> <target>1.5</target> <debug>true</debug> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-eclipse-plugin</artifactId> <version>2.8</version> <configuration> <downloadSources>true</downloadSources> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-idea-plugin</artifactId> <version>2.2</version> <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-profile</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <!-- SIGNS --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <properties> <spring.version>3.0.0.RELEASE</spring.version> <slf4j.version>1.5.10</slf4j.version> </properties> <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>