You can download usertype.spi-3.2.0.ga.jar in this page.
Apache License
usertype.spi-3.2.0.ga.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/org.jadira.usertype/usertype.spi/pom.properties META-INF/maven/org.jadira.usertype/usertype.spi/pom.xml org.jadira.usertype.spi.jta.HibernateEntityManagerFactoryBean.class org.jadira.usertype.spi.jta.HibernateSessionFactoryBean.class org.jadira.usertype.spi.jta.LocalTransactionManagerPlatform.class org.jadira.usertype.spi.jta.SpringWebSphereUowTransactionManager.class org.jadira.usertype.spi.repository.BaseRepository.class org.jadira.usertype.spi.repository.JpaBaseRepository.class org.jadira.usertype.spi.repository.JpaSearchRepository.class org.jadira.usertype.spi.repository.SearchRepository.class org.jadira.usertype.spi.shared.AbstractBigDecimalColumnMapper.class org.jadira.usertype.spi.shared.AbstractBigIntegerColumnMapper.class org.jadira.usertype.spi.shared.AbstractColumnMapper.class org.jadira.usertype.spi.shared.AbstractDateColumnMapper.class org.jadira.usertype.spi.shared.AbstractHeuristicUserType.class org.jadira.usertype.spi.shared.AbstractIntegerColumnMapper.class org.jadira.usertype.spi.shared.AbstractLongColumnMapper.class org.jadira.usertype.spi.shared.AbstractMultiColumnUserType.class org.jadira.usertype.spi.shared.AbstractParameterizedMultiColumnUserType.class org.jadira.usertype.spi.shared.AbstractParameterizedUserType.class org.jadira.usertype.spi.shared.AbstractReflectionUserType.class org.jadira.usertype.spi.shared.AbstractSingleColumnUserType.class org.jadira.usertype.spi.shared.AbstractStringColumnMapper.class org.jadira.usertype.spi.shared.AbstractTimeColumnMapper.class org.jadira.usertype.spi.shared.AbstractTimestampColumnMapper.class org.jadira.usertype.spi.shared.AbstractUserType.class org.jadira.usertype.spi.shared.AbstractUserTypeHibernateIntegrator.class org.jadira.usertype.spi.shared.AbstractVersionableBigIntegerColumnMapper.class org.jadira.usertype.spi.shared.AbstractVersionableLongColumnMapper.class org.jadira.usertype.spi.shared.AbstractVersionableTimestampColumnMapper.class org.jadira.usertype.spi.shared.AbstractVersionableUserType.class org.jadira.usertype.spi.shared.ColumnMapper.class org.jadira.usertype.spi.shared.ColumnMapperSingleColumnTypeAdapter.class org.jadira.usertype.spi.shared.ConfigurationHelper.class org.jadira.usertype.spi.shared.DatabaseZoneConfigured.class org.jadira.usertype.spi.shared.DbTimestampSeed.class org.jadira.usertype.spi.shared.DstSafeDateType.class org.jadira.usertype.spi.shared.DstSafeTimeType.class org.jadira.usertype.spi.shared.DstSafeTimestampType.class org.jadira.usertype.spi.shared.IntegratorConfiguredType.class org.jadira.usertype.spi.shared.JavaZoneConfigured.class org.jadira.usertype.spi.shared.Jdbc42Configured.class org.jadira.usertype.spi.shared.JvmTimestampSeed.class org.jadira.usertype.spi.shared.Seed.class org.jadira.usertype.spi.shared.VersionableColumnMapper.class org.jadira.usertype.spi.shared.descriptor.sql.DstSafeDateTypeDescriptor.class org.jadira.usertype.spi.shared.descriptor.sql.DstSafeTimeTypeDescriptor.class org.jadira.usertype.spi.shared.descriptor.sql.DstSafeTimestampTypeDescriptor.class org.jadira.usertype.spi.utils.lang.AssertionException.class org.jadira.usertype.spi.utils.lang.IterableEnumeration.class org.jadira.usertype.spi.utils.lang.StringUtils.class org.jadira.usertype.spi.utils.reflection.ArrayUtils.class org.jadira.usertype.spi.utils.reflection.ClassLoaderUtils.class org.jadira.usertype.spi.utils.reflection.ReflectionException.class org.jadira.usertype.spi.utils.reflection.ReflectionUtils.class org.jadira.usertype.spi.utils.reflection.TypeHelper.class org.jadira.usertype.spi.utils.runtime.JavaVersion.class
usertype.spi-3.2.0.ga.pom file content.
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright 2010, 2011 Christopher Pheby Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <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"> <parent> <groupId>org.jadira.framework</groupId> <artifactId>jadira.parent</artifactId> <version>3.2.0.GA</version> <relativePath>../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.jadira.usertype</groupId> <artifactId>usertype.spi</artifactId> <packaging>jar</packaging> <name>Jadira Usertype SPI Classes for Hibernate</name> <description>Shared dependencies for Usertype jars</description> <dependencyManagement> <dependencies> <dependency> <groupId>org.jadira.framework</groupId> <artifactId>jadira.depmgmt</artifactId> <type>pom</type> <scope>import</scope> <version>${project.version}</version> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.jadira.bindings</groupId> <artifactId>bindings</artifactId> <version>${project.version}</version> <optional>true</optional> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-core</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-entitymanager</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.javassist</groupId> <artifactId>javassist</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-tx</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-orm</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>org.dbunit</groupId> <artifactId>dbunit</artifactId> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> </dependency> <dependency> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>joda-time</groupId> <artifactId>joda-time-hibernate</artifactId> </dependency> <dependency> <groupId>javax.enterprise</groupId> <artifactId>cdi-api</artifactId> <scope>provided</scope> </dependency> <!-- Required for Javadoc generation --> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> <scope>provided</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.3.2</version> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.5.1</version> <configuration> <verbose>true</verbose> <fork>true</fork> <source>1.6</source> <target>1.6</target> <compilerArgument>-g</compilerArgument> <!-- We override the compiler plugin in order to suppress the errors from the following argument not being set --> <compilerArgument>-XDignore.symbol.file=true</compilerArgument> <encoding>${project.build.sourceEncoding}</encoding> <charset>${project.build.sourceEncoding}</charset> <debug>true</debug> <optimize>true</optimize> <showDeprecations>true</showDeprecations> </configuration> </plugin> </plugins> </build> </project>
<dependency> <groupId>org.jadira.usertype</groupId> <artifactId>usertype.spi</artifactId> <version>3.2.0.ga</version> </dependency>
If you think the following usertype.spi-3.2.0.ga.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download usertype.spi-3.2.0.ga.jar file