spring-data-basic
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.cloudfoundry.tothought</groupId> <artifactId>spring-data-basic</artifactId> <version>1.0</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> <groupId>com.cloudfoundry.tothought</groupId> <artifactId>spring-data-basic</artifactId> <version>1.0</version> <packaging>maven-archetype</packaging> <url>http://tothought.cloudfoundry.com</url> <name>spring-data-basic</name> <description>A basic setup for Spring Data + Hibernate + MySql</description> <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> <scm> <url>https://github.com/kmb385/to-thought-tutorial/tree/Post3</url> <connection>https://github.com/kmb385/to-thought-tutorial/tree/Post3</connection> </scm> <developers> <developer> <id>kmb385</id> <name>Kevin Bowersox</name> <email>kmb385@gmail.com</email> </developer> </developers> <build> <extensions> <extension> <groupId>org.apache.maven.archetype</groupId> <artifactId>archetype-packaging</artifactId> <version>2.2</version> </extension> </extensions> <pluginManagement> <plugins> <plugin> <artifactId>maven-archetype-plugin</artifactId> <version>2.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.4</version> </plugin> </plugins> </pluginManagement> </build> </project>