permazen-spring
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.permazen</groupId> <artifactId>permazen-spring</artifactId> <version>4.1.2</version> </dependency>
<?xml version="1.0"?> <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> <parent> <groupId>io.permazen</groupId> <artifactId>permazen</artifactId> <version>4.1.2</version> </parent> <artifactId>permazen-spring</artifactId> <name>Permazen Spring Classes</name> <description>Permazen classes for the Spring Framework.</description> <distributionManagement> <site> <id>${project.artifactId}-site</id> <url>file://${project.basedir}/../site/${project.artifactId}/</url> </site> </distributionManagement> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>${project.parent.artifactId}-main</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>${project.parent.artifactId}-coreapi</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>${project.parent.artifactId}-kv</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>${project.parent.artifactId}-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-tx</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <groupId>org.dellroad</groupId> <artifactId>dellroad-stuff-main</artifactId> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> </dependency> </dependencies> </project>