Skip to content

Commit

Permalink
build(dataverse): make main pom.xml inherit from new dataverse-parent I…
Browse files Browse the repository at this point in the history
…QSS#8394

This includes moving/inheriting some project properties from the parent.
  • Loading branch information
poikilotherm committed Feb 3, 2022
1 parent 7490fae commit 18f7532
Showing 1 changed file with 8 additions and 14 deletions.
22 changes: 8 additions & 14 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,28 +2,22 @@
<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/xsd/maven-4.0.0.xsd;">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>edu.harvard.iq</groupId>
<artifactId>dataverse-parent</artifactId>
<version>${revision}</version>
<relativePath>modules/dataverse-parent</relativePath>
</parent>

<!--
If you are doing more than bumping the version number, please read
doc/sphinx-guides/source/developers/dependencies.rst
-->
<groupId>edu.harvard.iq</groupId>
<artifactId>dataverse</artifactId>
<version>5.9</version>
<packaging>war</packaging>
<name>dataverse</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<additionalparam>-Xdoclint:none</additionalparam>
<!-- Needed to avoid IDEA IDE compilation failures. See commits in GH #5059 -->
<compilerArgument></compilerArgument>
<project.timezone>UTC</project.timezone>
<project.language>en</project.language>
<project.region>US</project.region>
<!--
Moving this from plugin config to global config, because of GH-5122.
This seems to play well with NetBeans 8.2, IDEA 2018.1 and mvn including compatibility with JaCoCo.
-->
<argLine>-Duser.timezone=${project.timezone} -Dfile.encoding=${project.build.sourceEncoding} -Duser.language=${project.language} -Duser.region=${project.region}</argLine>
<skipUnitTests>false</skipUnitTests>

<jakartaee-api.version>8.0.0</jakartaee-api.version>
Expand Down

0 comments on commit 18f7532

Please sign in to comment.