jdmn-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.goldmansachs.jdmn</groupId> <artifactId>jdmn-parent</artifactId> <version>8.7.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright 2016 Goldman Sachs. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.goldmansachs.jdmn</groupId> <artifactId>jdmn-parent</artifactId> <version>8.7.2</version> <packaging>pom</packaging> <name>jDMN: Parent</name> <description>jDMN is a framework to provide support for DMN execution</description> <url>https://github.com/goldmansachs/jdmn/</url> <inceptionYear>2016</inceptionYear> <organization> <name>Goldman Sachs</name> <url>http://www.goldmansachs.com/</url> </organization> <!-- Note on acceptable licenses to Apache products: https://www.apache.org/legal/resolved.html --> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>Octavian Patrascoiu</name> <email>opatrascoiu@yahoo.com</email> <organization>Goldman Sachs</organization> </developer> </developers> <scm> <url>https://github.com/goldmansachs/jdmn/</url> <connection>scm:git:https://github.com/goldmansachs/jdmn.git</connection> <developerConnection>scm:git:https://github.com/goldmansachs/jdmn.git</developerConnection> <tag>8.7.2</tag> </scm> <issueManagement> <system>GitHub</system> <url>https://github.com/goldmansachs/jdmn/issues</url> </issueManagement> <ciManagement> <system>Travis CI</system> <url>https://travis-ci.org/goldmansachs/jdmn</url> </ciManagement> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <properties> <dmn.version>1.4</dmn.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <project.build.outputEncoding>UTF-8</project.build.outputEncoding> <java.version>1.8</java.version> <maven.version>3.9.4</maven.version> <antlr4.version>4.13.1</antlr4.version> <jackson.version>2.14.1</jackson.version> <jackson.core.version>${jackson.version}</jackson.core.version> <jackson.databind.version>${jackson.version}</jackson.databind.version> <jackson.annotations.version>${jackson.version}</jackson.annotations.version> <jackson.datatype.version>${jackson.version}</jackson.datatype.version> <slf4j.version>2.0.10</slf4j.version> <log4j2.version>2.21.1</log4j2.version> <io.grpc.version>1.61.0</io.grpc.version> <google.protobuf.version>3.25.2</google.protobuf.version> <junit.version>5.10.1</junit.version> <jacoco.plugin.version>0.8.8</jacoco.plugin.version> <sonar.language>java</sonar.language> <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin> <sonar.sourceEncoding>UTF-8</sonar.sourceEncoding> <aggregate.report.dir>target/site/jacoco-aggregate/jacoco.xml</aggregate.report.dir> <sonar.exclusions> **/dmn-aggregate/**/*, **/dmn-jpa-it/**/*, **/dmn-signavio-it/**/*, **/dmn-tck-it/**/*, **/target/**/* </sonar.exclusions> <line.coverage.minimum>0.60</line.coverage.minimum> <ban.snapshot>true</ban.snapshot> </properties> <modules> <module>dmn-runtime</module> <module>dmn-core</module> <module>dmn-maven-plugin</module> <module>dmn-signavio</module> <module>dmn-tck-it</module> <module>dmn-signavio-it</module> <module>dmn-jpa-it</module> <module>dmn-aggregate</module> </modules> <profiles> <profile> <id>default</id> <activation> <activeByDefault>true</activeByDefault> </activation> <properties> <surefire.argLine>-Xmx1024m</surefire.argLine> <failsafe.argLine>-Xmx1024m</failsafe.argLine> </properties> </profile> <profile> <!-- Use this profile to check ASF Source Header and Copyright Notice Policy --> <id>check-license</id> <build> <plugins> <plugin> <groupId>org.apache.rat</groupId> <artifactId>apache-rat-plugin</artifactId> <configuration> <addLicenseHeaders>false</addLicenseHeaders> <excludes> <!-- Standard project files to exclude --> <exclude>**/.idea/**</exclude> <exclude>**/*.iml</exclude> <exclude>**/*.md</exclude> <exclude>**/LICENSE.txt</exclude> <exclude>**/com/gs/dmn/runtime/LambdaExpressionImpl.class</exclude> <!-- Excluding the resources --> <exclude>**/test/resources/**</exclude> <exclude>**/main/resources/**</exclude> <exclude>**/target/**</exclude> </excludes> <excludeSubProjects>false</excludeSubProjects> </configuration> <executions> <execution> <id>apply-license</id> <phase>validate</phase> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <!-- Use this profile to bulk-apply the license headers --> <id>update-license-headers</id> <build> <plugins> <plugin> <!-- Generate the license header in each file. The mycila plugin is a bit friendlier to apply the plugin, e.g. it was able to add it to sql files, where the rat plugin would not. Hence, we include it here for this profile. We don't use it for the validation itself as 1) it is unnecessarily unfriendly when it comes to whitespace in comparing the license headers 2) we'd rather use apache-rat-plugin that is used by more projects --> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <configuration> <inlineHeader><![CDATA[Copyright ${project.inceptionYear} Goldman Sachs. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.]]></inlineHeader> <excludes> <!-- Standard project files to exclude --> <exclude>**/.idea/**</exclude> <exclude>**/*.iml</exclude> <exclude>**/*.md</exclude> <exclude>**/LICENSE.txt</exclude> <exclude>**/NOTICE.txt</exclude> <exclude>**/.travis.yml</exclude> <!-- Excluding the resources --> <exclude>**/test/resources/**</exclude> <exclude>**/main/resources/**</exclude> <exclude>**/target/**</exclude> <exclude>**/public.key</exclude> </excludes> <strictCheck>true</strictCheck> <skipExistingHeaders>false</skipExistingHeaders> </configuration> <executions> <execution> <id>apply-license</id> <phase>validate</phase> <goals> <goal>format</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>sonar-coverage</id> <properties> <surefire.argLine>${surefireArgLine} -Xmx1024m</surefire.argLine> <failsafe.argLine>${failsafeArgLine} -Xmx1024m</failsafe.argLine> </properties> <build> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacoco.plugin.version}</version> <executions> <execution> <id>prepare-agent</id> <goals> <goal>prepare-agent</goal> </goals> <configuration> <!-- Sets the name of the property containing the settings for JaCoCo runtime agent. --> <propertyName>surefireArgLine</propertyName> </configuration> </execution> <execution> <id>prepare-agent-integration</id> <goals> <goal>prepare-agent-integration</goal> </goals> <configuration> <!-- Sets the name of the property containing the settings for JaCoCo runtime agent. --> <propertyName>failsafeArgLine</propertyName> </configuration> </execution> <execution> <id>check</id> <goals> <goal>check</goal> </goals> <configuration> <rules> <rule> <element>BUNDLE</element> <limits> <limit> <counter>LINE</counter> <value>COVEREDRATIO</value> <minimum>${line.coverage.minimum}</minimum> </limit> </limits> </rule> </rules> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.sonarsource.scanner.maven</groupId> <artifactId>sonar-maven-plugin</artifactId> </plugin> </plugins> </build> </profile> <profile> <id>release</id> <properties> <skipTests>true</skipTests> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <dependencyManagement> <dependencies> <dependency> <groupId>com.goldmansachs.jdmn</groupId> <artifactId>jdmn-runtime</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.goldmansachs.jdmn</groupId> <artifactId>jdmn-core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.goldmansachs.jdmn</groupId> <artifactId>jdmn-signavio</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> <version>${jackson.annotations.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>${jackson.core.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>${jackson.databind.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-jsr310</artifactId> <version>${jackson.datatype.version}</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.12.0</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.11.0</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.skyscreamer</groupId> <artifactId>jsonassert</artifactId> <version>1.5.1</version> <scope>test</scope> </dependency> <dependency> <groupId>com.google.googlejavaformat</groupId> <artifactId>google-java-format</artifactId> <version>1.5</version> <exclusions> <exclusion> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </exclusion> </exclusions> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>javax.annotation</groupId> <artifactId>javax.annotation-api</artifactId> <version>1.3.2</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-api</artifactId> <version>${log4j2.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <version>${log4j2.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j2-impl</artifactId> <version>${log4j2.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.rat</groupId> <artifactId>apache-rat-plugin</artifactId> <version>0.15</version> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <version>4.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>3.3.0</version> </plugin> <plugin> <!-- The plugin was introduced to automatically rewrite parts of the code --> <!-- It runs with the following goal: mvn rewrite:run --> <!-- See https://docs.openrewrite.org/ https://docs.openrewrite.org/recipes/java/migrate/upgradetojava17 --> <groupId>org.openrewrite.maven</groupId> <artifactId>rewrite-maven-plugin</artifactId> <version>5.20.0</version> <configuration> <activeRecipes> <!-- <recipe>org.openrewrite.java.migrate.UpgradeToJava17</recipe>--> <recipe>org.openrewrite.java.testing.junit5.JUnit4to5Migration</recipe> <!-- <recipe>org.openrewrite.java.testing.junit5.JUnit5BestPractices</recipe>--> </activeRecipes> <exclusions> <exclude>**/target/**</exclude> <exclude>docs/**</exclude> </exclusions> </configuration> <dependencies> <dependency> <groupId>org.openrewrite.recipe</groupId> <artifactId>rewrite-migrate-java</artifactId> <version>2.7.0</version> </dependency> <dependency> <groupId>org.openrewrite.recipe</groupId> <artifactId>rewrite-testing-frameworks</artifactId> <version>2.3.0</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>3.4.1</version> <executions> <execution> <id>enforce-java</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireMavenVersion> <version>${maven.version}</version> </requireMavenVersion> <requireJavaVersion> <version>${java.version}</version> </requireJavaVersion> <dependencyConvergence /> <requirePluginVersions> <banLatest>true</banLatest> <banRelease>true</banRelease> <banSnapshots>${ban.snapshot}</banSnapshots> <phases>clean,deploy,site</phases>` <unCheckedPluginList>com.goldmansachs.jdmn:jdmn-maven-plugin, org.jetbrains.kotlin:kotlin-maven-plugin </unCheckedPluginList> </requirePluginVersions> </rules> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>2.13.0</version> <configuration> <generateBackupPoms>false</generateBackupPoms> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> <version>3.2.0</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>3.3.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>3.3.0</version> </plugin> <plugin> <groupId>org.antlr</groupId> <artifactId>antlr4-maven-plugin</artifactId> <version>${antlr4.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.10.1</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.22.2</version> <configuration> <!-- for integration w/ sonar unit coverage --> <argLine>${surefire.argLine} -Dfile.encoding=UTF-8</argLine> <excludes> <exclude>**/*IT.java</exclude> </excludes> <redirectTestOutputToFile>true</redirectTestOutputToFile> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <version>2.22.2</version> <configuration> <!-- for integration w/ sonar integration coverage --> <argLine>${failsafe.argLine}</argLine> <includes> <include>**/*IT.java</include> </includes> <redirectTestOutputToFile>true</redirectTestOutputToFile> </configuration> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.3.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.4.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>3.12.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>3.0.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> <version>3.1.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> </plugin> <plugin> <groupId>org.sonarsource.scanner.maven</groupId> <artifactId>sonar-maven-plugin</artifactId> <version>3.9.1.2184</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.0.1</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.rat</groupId> <artifactId>apache-rat-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <excludePackageNames>org.omg.*</excludePackageNames> <source>${java.version}</source> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <tagNameFormat>@{project.version}</tagNameFormat> <goals>deploy</goals> </configuration> </plugin> <plugin> <groupId>org.sonarsource.scanner.maven</groupId> <artifactId>sonar-maven-plugin</artifactId> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.rat</groupId> <artifactId>apache-rat-plugin</artifactId> <version>0.13</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-changes-plugin</artifactId> <version>2.12.1</version> <configuration> <githubAPIServerId>github</githubAPIServerId> <githubAPIScheme>https</githubAPIScheme> <githubAPIPort>443</githubAPIPort> <issueManagementSystems> <issueManagementSystem>GitHub</issueManagementSystem> </issueManagementSystems> </configuration> <reportSets> <reportSet> <reports> <report>github-report</report> </reports> </reportSet> </reportSets> </plugin> </plugins> </reporting> </project>