Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 1 addition & 50 deletions maven/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,61 +25,15 @@
</parent>

<artifactId>hibernate-tools-maven</artifactId>

<packaging>maven-plugin</packaging>

<name>Hibernate Tools Maven Plugin</name>
<description>Maven plugin to provide hibernate-tools reverse engineering and code/schema generation abilities.</description>
<url>http://hibernate.org/tools/</url>

<issueManagement>
<system>JIRA</system>
<url>http://hibernate.onjira.com/browse/HBX</url>
</issueManagement>

<scm>
<connection>scm:git:git://github.com/hibernate/hibernate-tools.git</connection>
<developerConnection>scm:git:[email protected]:hibernate/hibernate-tools.git</developerConnection>
<url>http://github.com/hibernate/hibernate-tools</url>
</scm>

<organization>
<name>Hibernate</name>
<url>http://www.hibernate.org</url>
</organization>

<licenses>
<license>
<name>GNU Lesser General Public License</name>
<url>http://www.gnu.org/licenses/lgpl-2.1.html</url>
</license>
</licenses>

<developers>
<developer>
<id>stadler</id>
<name>Jacques Stadler</name>
<email>[email protected]</email>
</developer>
</developers>

<prerequisites>
<maven>3.0</maven>
</prerequisites>

<properties>
<!-- This is a publicly distributed module that should be published: -->
<deploy.skip>false</deploy.skip>
<maven.install.skip>false</maven.install.skip>

<maven-plugin-annotations.version>3.5</maven-plugin-annotations.version>
<maven-plugin-api.version>3.5.2</maven-plugin-api.version>
<maven-core.version>3.9.9</maven-core.version>

<!-- Plugin versions -->
<maven-project-info-reports-plugin.version>2.9</maven-project-info-reports-plugin.version>
<maven-site-plugin.version>3.7</maven-site-plugin.version>
<site-maven-plugin.version>0.12</site-maven-plugin.version>
</properties>

<dependencies>
Expand All @@ -92,17 +46,14 @@
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>${maven-plugin-api.version}</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<version>${maven-core.version}</version>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>${maven-plugin-annotations.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
Expand Down Expand Up @@ -149,7 +100,7 @@
<plugin>
<groupId>com.github.github</groupId>
<artifactId>site-maven-plugin</artifactId>
<version>${site-maven-plugin.version}</version>
<version>${github-site-maven-plugin.version}</version>
<executions>
<execution>
<goals>
Expand Down
40 changes: 37 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,18 @@
<email>[email protected]</email>
<url>http://koentsje.blogspot.be</url>
</developer>
</developers>
<developer>
<id>stadler</id>
<name>Jacques Stadler</name>
<email>[email protected]</email>
</developer>
<developer>
<id>marko.bekhta</id>
<name>Marko Bekhta</name>
<email>[email protected]</email>
<url>http://in.relation.to/marko-bekhta/</url>
</developer>
</developers>

<modules>
<module>orm</module>
Expand All @@ -85,6 +96,8 @@

<properties>

<maven.version>3.9.11</maven.version>

<ant.version>1.10.15</ant.version>
<antlr.version>4.13.2</antlr.version>
<commons-collections.version>4.5.0</commons-collections.version>
Expand All @@ -103,8 +116,14 @@
<sqlserver.version>9.2.1.jre8</sqlserver.version>

<!-- Plugins not managed by the JBoss parent POM: -->
<maven-plugin-api.version>3.9.11</maven-plugin-api.version>
<maven-plugin-annotations.version>3.15.1</maven-plugin-annotations.version>
<maven-wrapper-plugin.version>3.3.3</maven-wrapper-plugin.version>
<flatten-maven-plugin.version>1.7.2</flatten-maven-plugin.version>
<maven-invoker-plugin.version>3.9.1</maven-invoker-plugin.version>
<github-site-maven-plugin.version>0.12</github-site-maven-plugin.version>
<maven-project-info-reports-plugin.version>3.9.0</maven-project-info-reports-plugin.version>
<maven-site-plugin.version>3.21.0</maven-site-plugin.version>

<!--
We don't want to publish or sign any modules by default.
Expand All @@ -125,10 +144,10 @@
<central.snapshots.repo.name>Maven Central Snapshots Repository</central.snapshots.repo.name>
<central.snapshots.repo.url>https://central.sonatype.com/repository/maven-snapshots/</central.snapshots.repo.url>


<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.source>11</maven.compiler.source>
<maven.min.version>3.9.11</maven.min.version>
<maven.min.version>${maven.version}</maven.min.version>
<maven-core.version>${maven.version}</maven-core.version>

</properties>

Expand Down Expand Up @@ -184,6 +203,21 @@
<artifactId>commons-collections4</artifactId>
<version>${commons-collections.version}</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<version>${maven-core.version}</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>${maven-plugin-api.version}</version>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>${maven-plugin-annotations.version}</version>
</dependency>
<dependency>
<groupId>org.freemarker</groupId>
<artifactId>freemarker</artifactId>
Expand Down