최초 세팅
This commit is contained in:
@@ -0,0 +1,277 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
~ Jakarta Bean Validation API
|
||||
~
|
||||
~ License: Apache License, Version 2.0
|
||||
~ See the license.txt file in the root directory or <http://www.apache.org/licenses/LICENSE-2.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>org.eclipse.ee4j</groupId>
|
||||
<artifactId>project</artifactId>
|
||||
<version>1.0.6</version>
|
||||
</parent>
|
||||
|
||||
<groupId>jakarta.validation</groupId>
|
||||
<artifactId>jakarta.validation-api</artifactId>
|
||||
<version>3.0.2</version>
|
||||
<packaging>jar</packaging>
|
||||
<name>Jakarta Bean Validation API</name>
|
||||
<url>https://beanvalidation.org</url>
|
||||
|
||||
<description>
|
||||
Jakarta Bean Validation API
|
||||
</description>
|
||||
|
||||
<developers>
|
||||
<developer>
|
||||
<id>epbernard</id>
|
||||
<name>Emmanuel Bernard</name>
|
||||
<email>emmanuel@hibernate.org</email>
|
||||
<organization>Red Hat, Inc.</organization>
|
||||
<url>http://in.relation.to/emmanuel-bernard/</url>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>emmanuelbernard</id>
|
||||
<name>Emmanuel Bernard</name>
|
||||
<email>emmanuel@hibernate.org</email>
|
||||
<organization>Red Hat, Inc.</organization>
|
||||
<url>http://in.relation.to/emmanuel-bernard/</url>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>hardy.ferentschik</id>
|
||||
<name>Hardy Ferentschik</name>
|
||||
<email>hferents@redhat.com</email>
|
||||
<organization>Red Hat, Inc.</organization>
|
||||
<url>http://in.relation.to/hardy-ferentschik/</url>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>gunnar.morling</id>
|
||||
<name>Gunnar Morling</name>
|
||||
<email>gunnar@hibernate.org</email>
|
||||
<organization>Red Hat, Inc.</organization>
|
||||
<url>http://in.relation.to/gunnar-morling/</url>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>guillaume.smet</id>
|
||||
<name>Guillaume Smet</name>
|
||||
<email>guillaume.smet@hibernate.org</email>
|
||||
<organization>Red Hat, Inc.</organization>
|
||||
<url>http://in.relation.to/guillaume-smet/</url>
|
||||
</developer>
|
||||
</developers>
|
||||
|
||||
<issueManagement>
|
||||
<system>JIRA</system>
|
||||
<url>https://hibernate.atlassian.net/projects/BVAL/</url>
|
||||
</issueManagement>
|
||||
|
||||
<inceptionYear>2007</inceptionYear>
|
||||
|
||||
<licenses>
|
||||
<license>
|
||||
<name>Apache License 2.0</name>
|
||||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||
</license>
|
||||
</licenses>
|
||||
|
||||
<scm>
|
||||
<connection>scm:git:git://github.com/eclipse-ee4j/beanvalidation-api.git</connection>
|
||||
<developerConnection>scm:git:git@github.com:eclipse-ee4j/beanvalidation-api.git</developerConnection>
|
||||
<url>https://github.com/eclipse-ee4j/beanvalidation-api</url>
|
||||
<tag>HEAD</tag>
|
||||
</scm>
|
||||
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.testng</groupId>
|
||||
<artifactId>testng</artifactId>
|
||||
<version>6.11</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.felix</groupId>
|
||||
<artifactId>maven-bundle-plugin</artifactId>
|
||||
<version>3.5.0</version>
|
||||
<configuration>
|
||||
<instructions>
|
||||
<Export-Package>
|
||||
jakarta.validation.*;version="${project.version}",
|
||||
</Export-Package>
|
||||
<!-- Make sure we keep 1.8 compatibility for JavaSE in the manifest -->
|
||||
<Require-Capability><![CDATA[osgi.ee;filter:="(&(osgi.ee=JavaSE)(version=1.8))"]]></Require-Capability>
|
||||
</instructions>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>bundle-manifest</id>
|
||||
<phase>process-classes</phase>
|
||||
<goals>
|
||||
<goal>manifest</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<!--
|
||||
Use the JDK 9+ compiler but with -source 1.8 for all
|
||||
but the module-info.java file.
|
||||
-->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>3.8.1</version>
|
||||
<configuration>
|
||||
<release>9</release>
|
||||
<compilerArgs>
|
||||
<arg>-Xlint:all</arg>
|
||||
</compilerArgs>
|
||||
<showDeprecation>true</showDeprecation>
|
||||
<showWarnings>true</showWarnings>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>base-compile</id>
|
||||
<goals>
|
||||
<goal>compile</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<release>8</release>
|
||||
<excludes>
|
||||
<exclude>module-info.java</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<version>2.19.1</version>
|
||||
<configuration>
|
||||
<forkMode>once</forkMode>
|
||||
<redirectTestOutputToFile>true</redirectTestOutputToFile>
|
||||
<includes>
|
||||
<include>**/*Test.java</include>
|
||||
</includes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-jar-plugin</artifactId>
|
||||
<version>3.0.2</version>
|
||||
<configuration>
|
||||
<archive>
|
||||
<manifestFile>${basedir}/target/classes/META-INF/MANIFEST.MF</manifestFile>
|
||||
</archive>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
<version>3.0.1</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-sources</id>
|
||||
<goals>
|
||||
<goal>jar</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<version>3.3.0</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-javadocs</id>
|
||||
<goals>
|
||||
<goal>jar</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
<configuration>
|
||||
<source>8</source>
|
||||
<detectJavaApiLink>false</detectJavaApiLink>
|
||||
<packagesheader>Jakarta Bean Validation API Packages</packagesheader>
|
||||
<doctitle>Jakarta Bean Validation API ${project.version}</doctitle>
|
||||
<windowtitle>Jakarta Bean Validation API ${project.version}</windowtitle>
|
||||
<bottom><![CDATA[
|
||||
Comments to: <a href="mailto:bean-validation-dev@eclipse.org">bean-validation-dev@eclipse.org</a>.<br>
|
||||
Copyright © 2019,2020 Eclipse Foundation.<br>
|
||||
Use is subject to <a href="{@docRoot}/doc-files/speclicense.html" target="_top">EFSL</a>; this spec is based on material that is licensed under the Apache License, version 2.0.]]>
|
||||
</bottom>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-install-plugin</artifactId>
|
||||
<version>2.5.2</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-release-plugin</artifactId>
|
||||
<version>2.5.3</version>
|
||||
<configuration>
|
||||
<allowTimestampedSnapshots>true</allowTimestampedSnapshots>
|
||||
<remoteTagging>true</remoteTagging>
|
||||
<goals>deploy</goals>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-deploy-plugin</artifactId>
|
||||
<version>3.0.0-M1</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>com.mycila</groupId>
|
||||
<artifactId>license-maven-plugin</artifactId>
|
||||
<version>3.0</version>
|
||||
<configuration>
|
||||
<header>${project.basedir}/license/license.header</header>
|
||||
<strictCheck>true</strictCheck>
|
||||
<headerDefinitions>
|
||||
<headerDefinition>${project.basedir}/license/java-header-style.xml</headerDefinition>
|
||||
<headerDefinition>${project.basedir}/license/xml-header-style.xml</headerDefinition>
|
||||
</headerDefinitions>
|
||||
<mapping>
|
||||
<java>JAVA_CLASS_STYLE</java>
|
||||
<xml>XML_FILE_STYLE</xml>
|
||||
<xsd>XML_FILE_STYLE</xsd>
|
||||
</mapping>
|
||||
<includes>
|
||||
<include>**/*.java</include>
|
||||
<include>**/*.xml</include>
|
||||
<include>**/*.xsd</include>
|
||||
</includes>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>license-headers</id>
|
||||
<goals>
|
||||
<goal>check</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>release</id>
|
||||
<properties>
|
||||
<createChecksum>true</createChecksum>
|
||||
</properties>
|
||||
</profile>
|
||||
</profiles>
|
||||
|
||||
</project>
|
||||
Reference in New Issue
Block a user