parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.skjolber.json-log-filter</groupId> <artifactId>parent</artifactId> <version>4.1.3</version> </dependency>
<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> <groupId>com.github.skjolber.json-log-filter</groupId> <artifactId>parent</artifactId> <version>4.1.3</version> <packaging>pom</packaging> <name>json-log-filter</name> <description>Project for JSON filtering for logging purposes</description> <url>https://github.com/skjolber/json-log-filter</url> <organization> <name>Thomas Skjolberg</name> <url>https://skjolber.github.io</url> </organization> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Thomas Skjølberg</name> <email>thomas.skjolberg@gmail.com</email> </developer> </developers> <scm> <connection>scm:git:git@github.com:skjolber/json-log-filter.git</connection> <developerConnection>scm:git:git@github.com:skjolber/json-log-filter.git</developerConnection> <url>git@github.com:skjolber/json-log-filter.git</url> <tag>parent-4.1.3</tag> </scm> <issueManagement> <system>GitHub</system> <url>https://github.com/skjolber/json-log-filter/issues</url> </issueManagement> <ciManagement> <system>Jenkins</system> <url>https://build.skjolber.com/job/json-log-filter</url> </ciManagement> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <json-path.version>2.9.0</json-path.version> <indent.version>1.0.0</indent.version> <jackson.version>2.17.0</jackson.version> <google-truth.version>1.4.2</google-truth.version> <commons-io.version>2.16.1</commons-io.version> <commons-codec.version>1.17.0</commons-codec.version> <jimfs.version>1.3.0</jimfs.version> <mockito.version>5.11.0</mockito.version> <junit.version>5.10.2</junit.version> <slf4j.version>1.7.36</slf4j.version> <classgraph.version>4.8.165</classgraph.version> <!-- plugins --> <build-helper-maven-plugin.version>1.9.1</build-helper-maven-plugin.version> <nexus-staging-maven-plugin.version>1.6.13</nexus-staging-maven-plugin.version> <jacoco-maven-plugin.version>0.8.12</jacoco-maven-plugin.version> <maven-surefire-plugin.version>3.0.0-M7</maven-surefire-plugin.version> <maven-source-plugin.version>3.2.1</maven-source-plugin.version> <maven-javadoc-plugin.version>3.6.3</maven-javadoc-plugin.version> <maven-release-plugin.version>3.0.1</maven-release-plugin.version> <maven-gpg-plugin.version>3.1.0</maven-gpg-plugin.version> <maven-dependency-plugin.version>2.10</maven-dependency-plugin.version> <maven-compiler-plugin.version>3.12.1</maven-compiler-plugin.version> <maven-shade-plugin.version>3.5.2</maven-shade-plugin.version> <sonar.exclusions>support/test/src/main/java/com/github/skjolber/jsonfilter/test/**/*,benchmark/jmh/src/main/java/com/github/skjolber/jsonfilter/**/*</sonar.exclusions> <!-- module descriptors --> <java.module.version>11</java.module.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>com.github.skjolber.json-log-filter</groupId> <artifactId>test</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.github.skjolber.json-log-filter</groupId> <artifactId>api</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.github.skjolber.json-log-filter</groupId> <artifactId>base</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.github.skjolber.json-log-filter</groupId> <artifactId>core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.github.skjolber.json-log-filter</groupId> <artifactId>jackson</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.github.skjolber.json-log-filter</groupId> <artifactId>path</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-core</artifactId> <version>${jackson.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>${jackson.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> <version>${slf4j.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>${commons-io.version}</version> </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <version>${commons-codec.version}</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.mockito</groupId> <artifactId>mockito-core</artifactId> <version>${mockito.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.google.truth</groupId> <artifactId>truth</artifactId> <version>${google-truth.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.google.truth.extensions</groupId> <artifactId>truth-java8-extension</artifactId> <version>${google-truth.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.jayway.jsonpath</groupId> <artifactId>json-path</artifactId> <version>${json-path.version}</version> </dependency> <dependency> <groupId>io.github.classgraph</groupId> <artifactId>classgraph</artifactId> <version>${classgraph.version}</version> </dependency> <dependency> <groupId>com.google.jimfs</groupId> <artifactId>jimfs</artifactId> <version>${jimfs.version}</version> </dependency> </dependencies> </dependencyManagement> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <configuration> <source>${maven.compiler.source}</source> <target>${maven.compiler.target}</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> <configuration> <forkCount>1</forkCount> <reuseForks>true</reuseForks> <redirectTestOutputToFile>false</redirectTestOutputToFile> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacoco-maven-plugin.version}</version> <configuration> <excludes> <exclude>com/github/skjolber/jsonfilter/jmh/*</exclude> <exclude>com/github/skjolber/jsonfilter/jmh/fileutils/*</exclude> <exclude>com/github/skjolber/jsonfilter/jmh/filter/*</exclude> <exclude>com/github/skjolber/jsonfilter/jmh/utils/*</exclude> <exclude>com/github/skjolber/jsonfilter/jmh/test/*</exclude> </excludes> </configuration> <executions> <execution> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>test</phase> <goals> <goal>report</goal> </goals> </execution> <execution> <id>report-aggregate</id> <goals> <goal>report-aggregate</goal> </goals> <phase>verify</phase> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${nexus-staging-maven-plugin.version}</version> <extensions>true</extensions> <executions> <execution> <id>default-deploy</id> <phase>deploy</phase> <goals> <goal>deploy</goal> </goals> </execution> </executions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>false</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>${maven-release-plugin.version}</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <goals>deploy</goals> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>${maven-shade-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>3.4.1</version> <executions> <execution> <id>enforce-versions</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <bannedPlugins> <!-- will only display a warning but does not fail the build. --> <level>WARN</level> <excludes> <exclude>org.apache.maven.plugins:maven-verifier-plugin</exclude> </excludes> <message>Please consider using the maven-invoker-plugin (http://maven.apache.org/plugins/maven-invoker-plugin/)!</message> </bannedPlugins> <requireMavenVersion> <version>3.5.2</version> </requireMavenVersion> <requireJavaVersion> <version>1.8</version> </requireJavaVersion> </rules> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.moditect</groupId> <artifactId>moditect-maven-plugin</artifactId> <version>1.2.1.Final</version> <executions> <execution> <id>add-module-infos</id> <phase>package</phase> <goals> <goal>add-module-info</goal> </goals> <configuration> <jvmVersion>${java.module.version}</jvmVersion> <overwriteExistingFiles>true</overwriteExistingFiles> <module> <moduleInfoFile>src/main/moditech/module-info.java</moduleInfoFile> </module> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.sonarsource.scanner.maven</groupId> <artifactId>sonar-maven-plugin</artifactId> <version>3.9.1.2184</version> </plugin> </plugins> </pluginManagement> </build> <modules> <module>api</module> <module>base</module> <module>impl/core</module> <module>support/test</module> <module>frameworks/jackson</module> <module>impl/path</module> </modules> <profiles> <profile> <id>base</id> </profile> <profile> <!-- mvn -P release release:perform also see https://stackoverflow.com/questions/8304110/skip-a-submodule-during-a-maven-build --> <id>release</id> <properties> <!-- this is useful when the desired key is not the default (first) export GPG_KEY_NAME=ABCDEF01 --> <gpg.executable>gpg</gpg.executable> <gpg.keyname>${env.GPG_KEY_NAME}</gpg.keyname> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> </plugin> </plugins> </build> </profile> <profile> <id>jmh</id> <activation> <activeByDefault>true</activeByDefault> </activation> <modules> <module>benchmark/jmh</module> </modules> </profile> </profiles> <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> </project>