|
34 | 34 |
|
35 | 35 | <name>Hibernate Tools Parent Project</name> |
36 | 36 |
|
| 37 | + <url>http://hibernate.org/tools/</url> |
| 38 | + |
| 39 | + <issueManagement> |
| 40 | + <system>JIRA</system> |
| 41 | + <url>http://hibernate.atlassian.net/projects/HBX</url> |
| 42 | + </issueManagement> |
| 43 | + |
| 44 | + <scm> |
| 45 | + <connection>scm:git:git://github.com/hibernate/hibernate-tools.git</connection> |
| 46 | + < developerConnection>scm:git: [email protected]:hibernate/hibernate-tools.git</ developerConnection> |
| 47 | + <url>http://github.com/hibernate/hibernate-tools</url> |
| 48 | + </scm> |
| 49 | + |
| 50 | + <organization> |
| 51 | + <name>Hibernate</name> |
| 52 | + <url>http://www.hibernate.org</url> |
| 53 | + </organization> |
| 54 | + |
| 55 | + <licenses> |
| 56 | + <license> |
| 57 | + <name>GNU Lesser General Public License</name> |
| 58 | + <url>http://www.gnu.org/licenses/lgpl-2.1.html</url> |
| 59 | + </license> |
| 60 | + </licenses> |
| 61 | + |
| 62 | + <developers> |
| 63 | + <developer> |
| 64 | + <id>maxandersen</id> |
| 65 | + <name>Max Andersen</name> |
| 66 | + |
| 67 | + <url>http://in.relation.to/Bloggers/Max</url> |
| 68 | + </developer> |
| 69 | + <developer> |
| 70 | + <id>koentsje</id> |
| 71 | + <name>Koen Aers</name> |
| 72 | + |
| 73 | + <url>http://koentsje.blogspot.be</url> |
| 74 | + </developer> |
| 75 | + <developer> |
| 76 | + <id>stadler</id> |
| 77 | + <name>Jacques Stadler</name> |
| 78 | + |
| 79 | + </developer> |
| 80 | + <developer> |
| 81 | + <id>marko.bekhta</id> |
| 82 | + <name>Marko Bekhta</name> |
| 83 | + |
| 84 | + <url>http://in.relation.to/marko-bekhta/</url> |
| 85 | + </developer> |
| 86 | + </developers> |
| 87 | + |
37 | 88 | <modules> |
38 | 89 | <module>main</module> |
39 | 90 | <module>maven-plugin</module> |
40 | 91 | <module>test</module> |
41 | 92 | </modules> |
42 | 93 |
|
43 | 94 | <properties> |
44 | | - <ant.version>1.10.14</ant.version> |
45 | | - <commons-collections.version>4.4</commons-collections.version> |
46 | | - <freemarker.version>2.3.32</freemarker.version> |
| 95 | + |
| 96 | + <maven.version>3.9.11</maven.version> |
| 97 | + |
| 98 | + <ant.version>1.10.15</ant.version> |
| 99 | + <commons-collections.version>4.5.0</commons-collections.version> |
| 100 | + <freemarker.version>2.3.34</freemarker.version> |
47 | 101 | <!-- 1.7 is the last google-java-format version that is compiled against Java 1.8 --> |
48 | 102 | <google-java-format.version>1.7</google-java-format.version> |
49 | 103 | <h2.version>2.2.224</h2.version> |
50 | 104 | <hibernate-commons-annotations.version>5.1.2.Final</hibernate-commons-annotations.version> |
51 | 105 | <hibernate-core.version>5.6.15.Final</hibernate-core.version> |
52 | | - <hsqldb.version>2.5.2</hsqldb.version> |
| 106 | + <hsqldb.version>2.6.1</hsqldb.version> |
53 | 107 | <javaee-api.version>8.0.1</javaee-api.version> |
54 | 108 | <javax.persistence-api.version>2.2</javax.persistence-api.version> |
55 | 109 | <junit-jupiter.version>5.11.1</junit-jupiter.version> |
|
58 | 112 | <sqlserver.version>9.2.1.jre8</sqlserver.version> |
59 | 113 |
|
60 | 114 | <!-- Plugins not managed by the JBoss parent POM: --> |
| 115 | + <maven-plugin-api.version>3.9.11</maven-plugin-api.version> |
| 116 | + <maven-plugin-annotations.version>3.15.1</maven-plugin-annotations.version> |
61 | 117 | <maven-wrapper-plugin.version>3.3.3</maven-wrapper-plugin.version> |
62 | | - <flatten-maven-plugin.version>1.7.0</flatten-maven-plugin.version> |
| 118 | + <flatten-maven-plugin.version>1.7.2</flatten-maven-plugin.version> |
| 119 | + <maven-invoker-plugin.version>3.9.1</maven-invoker-plugin.version> |
| 120 | + <github-site-maven-plugin.version>0.12</github-site-maven-plugin.version> |
| 121 | + <maven-project-info-reports-plugin.version>3.9.0</maven-project-info-reports-plugin.version> |
| 122 | + <maven-site-plugin.version>3.21.0</maven-site-plugin.version> |
63 | 123 |
|
64 | 124 | <!-- |
65 | 125 | We don't want to publish or sign any modules by default. |
|
80 | 140 | <central.snapshots.repo.name>Maven Central Snapshots Repository</central.snapshots.repo.name> |
81 | 141 | <central.snapshots.repo.url>https://central.sonatype.com/repository/maven-snapshots/</central.snapshots.repo.url> |
82 | 142 |
|
83 | | - |
84 | 143 | <maven.compiler.target>1.8</maven.compiler.target> |
85 | 144 | <maven.compiler.source>1.8</maven.compiler.source> |
86 | | - <maven.min.version>3.9.11</maven.min.version> |
| 145 | + <maven.min.version>${maven.version}</maven.min.version> |
| 146 | + <maven-core.version>${maven.version}</maven-core.version> |
87 | 147 |
|
88 | 148 | </properties> |
89 | 149 |
|
|
100 | 160 | <version>${h2.version}</version> |
101 | 161 | <scope>test</scope> |
102 | 162 | </dependency> |
| 163 | + <dependency> |
| 164 | + <groupId>org.apache.maven</groupId> |
| 165 | + <artifactId>maven-core</artifactId> |
| 166 | + <version>${maven-core.version}</version> |
| 167 | + </dependency> |
| 168 | + <dependency> |
| 169 | + <groupId>org.apache.maven</groupId> |
| 170 | + <artifactId>maven-plugin-api</artifactId> |
| 171 | + <version>${maven-plugin-api.version}</version> |
| 172 | + </dependency> |
| 173 | + <dependency> |
| 174 | + <groupId>org.apache.maven.plugin-tools</groupId> |
| 175 | + <artifactId>maven-plugin-annotations</artifactId> |
| 176 | + <version>${maven-plugin-annotations.version}</version> |
| 177 | + </dependency> |
103 | 178 | <dependency> |
104 | 179 | <groupId>com.microsoft.sqlserver</groupId> |
105 | 180 | <artifactId>mssql-jdbc</artifactId> |
|
0 commit comments