组织ID: |
org.hibernate |
项目ID: |
hibernate-validator-annotation-processor |
版本: |
4.1.0.Final |
最后修改时间: |
2018-07-24 11:45:40 |
包类型: |
jar |
标题: |
Hibernate Validator Annotation Processor |
大小: |
38.63KB |
|
Maven引入代码: |
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator-annotation-processor</artifactId>
<version>4.1.0.Final</version>
</dependency>
|
Gradle引入代码: |
org.hibernate:hibernate-validator-annotation-processor:4.1.0.Final
|
下载Jar包: |
|
POM文件内容: |
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>hibernate-validator-parent</artifactId>
<groupId>org.hibernate</groupId>
<version>4.1.0.Final</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator-annotation-processor</artifactId>
<name>Hibernate Validator Annotation Processor</name>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<compilerArgument>-proc:none</compilerArgument>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy</id>
<phase>generate-test-sources</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<stripVersion>true</stripVersion>
<artifactItems>
<artifactItem>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<overWrite>true</overWrite>
<outputDirectory>${project.build.directory}/lib</outputDirectory>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<systemProperties>
<property>
<name>testSourceBaseDir</name>
<value>${basedir}/src/test/java</value>
</property>
<!--
Used to specify the class path for the JavaCompiler in tests. For some reason
this is not required within eclipse. The JavaCompiler there has access to all dependencies
of the program by default.
TODO GM: find a better way to solve this issue
-->
<property>
<name>pathToBeanValidationApiJar</name>
<value>${project.build.directory}/lib/validation-api.jar</value>
</property>
</systemProperties>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<classifier>jdk15</classifier>
<scope>test</scope>
</dependency>
</dependencies>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
META-INF/services/javax.annotation.processing.Processor
org.hibernate.validator.ap.checks.AbstractConstraintCheck.class
org.hibernate.validator.ap.checks.AnnotationTypeCheck.class
org.hibernate.validator.ap.checks.ConstraintCheck.class
org.hibernate.validator.ap.checks.ConstraintCheckError.class
org.hibernate.validator.ap.checks.ConstraintCheckFactory$1.class
org.hibernate.validator.ap.checks.ConstraintCheckFactory.class
org.hibernate.validator.ap.checks.ConstraintChecks.class
org.hibernate.validator.ap.checks.GetterCheck.class
org.hibernate.validator.ap.checks.MultiValuedChecks.class
org.hibernate.validator.ap.checks.PrimitiveCheck.class
org.hibernate.validator.ap.checks.SingleValuedChecks.class
org.hibernate.validator.ap.checks.StaticCheck.class
org.hibernate.validator.ap.checks.TypeCheck.class
org.hibernate.validator.ap.ConstraintAnnotationVisitor.class
org.hibernate.validator.ap.ConstraintValidationProcessor.class
org.hibernate.validator.ap.util.AnnotationApiHelper$1.class
org.hibernate.validator.ap.util.AnnotationApiHelper.class
org.hibernate.validator.ap.util.CollectionHelper.class
org.hibernate.validator.ap.util.ConstraintHelper$1.class
org.hibernate.validator.ap.util.ConstraintHelper$2.class
org.hibernate.validator.ap.util.ConstraintHelper$3.class
org.hibernate.validator.ap.util.ConstraintHelper$4.class
org.hibernate.validator.ap.util.ConstraintHelper$5.class
org.hibernate.validator.ap.util.ConstraintHelper$AnnotationType.class
org.hibernate.validator.ap.util.ConstraintHelper$ConstraintCheckResult.class
org.hibernate.validator.ap.util.ConstraintHelper.class
org.hibernate.validator.ap.util.MessagerAdapter.class
org/hibernate/validator/ap/ValidationProcessorMessages.properties
META-INF/maven/org.hibernate/hibernate-validator-annotation-processor/pom.xml
META-INF/maven/org.hibernate/hibernate-validator-annotation-processor/pom.properties
|
依赖Jar: |
|