| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| Licensed to the Apache Software Foundation (ASF) under one |
| or more contributor license agreements. See the NOTICE file |
| distributed with this work for additional information |
| regarding copyright ownership. The ASF licenses this file |
| to you 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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| <parent> |
| <artifactId>turbine-parent</artifactId> |
| <groupId>org.apache.turbine</groupId> |
| <version>12-SNAPSHOT</version> |
| <relativePath /> |
| </parent> |
| <modelVersion>4.0.0</modelVersion> |
| <groupId>org.apache.fulcrum</groupId> |
| <artifactId>fulcrum-json-parent</artifactId> |
| <version>2.0.2-SNAPSHOT</version> |
| <packaging>pom</packaging> |
| <name>Fulcrum JSON Master Build</name> |
| <url>http://turbine.apache.org/fulcrum/fulcrum-json/</url> |
| <scm> |
| <connection>scm:git:https://gitbox.apache.org/repos/asf/turbine-fulcrum-json.git</connection> |
| <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/turbine-fulcrum-json.git</developerConnection> |
| <url>https://github.com/apache/${turbine.site.path}/tree/${project.scm.tag}</url> |
| <tag>master</tag><!-- or HEAD --> |
| </scm> |
| |
| <!-- distributionManagement id and url defined in parent, adapt turbine.site.path --> |
| <distributionManagement> |
| <site> |
| <name>Fulcrum JSON Website</name> |
| <id>apache.org</id> |
| <url>https://github.com/apache/turbine-fulcrum-json/</url> |
| </site> |
| </distributionManagement> |
| |
| <developers> |
| <developer> |
| <id>gk</id> |
| <name>Georg Kallidis</name> |
| <email>gk@apache.org</email> |
| <url /> |
| <organization /> |
| <roles> |
| <role>Java Developer</role> |
| </roles> |
| <timezone>1</timezone> |
| </developer> |
| <developer> |
| <name>Thomas Vandahl</name> |
| <id>tv</id> |
| <email>tv@apache.org</email> |
| <organization /> |
| <roles> |
| <role>Java Developer</role> |
| </roles> |
| <timezone>1</timezone> |
| </developer> |
| </developers> |
| <modules> |
| <module>api</module> |
| <module>gson</module> |
| <!--module>jackson</module--> |
| <module>jackson2</module> |
| <module>dist</module> |
| </modules> |
| |
| <build> |
| <sourceDirectory>${basedir}/src/java</sourceDirectory> |
| <testSourceDirectory>${basedir}/src/test</testSourceDirectory> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-scm-publish-plugin</artifactId> |
| <configuration> |
| <content>${siteContent.path}</content> |
| <tryUpdate>false</tryUpdate> |
| <scmBranch>asf-site</scmBranch> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| |
| <reporting> |
| <plugins> |
| <plugin> |
| <artifactId>maven-javadoc-plugin</artifactId> |
| <groupId>org.apache.maven.plugins</groupId> |
| <!-- to generate only in root --> |
| <reportSets> |
| <reportSet> |
| <id>aggregate</id> |
| <inherited>false</inherited> |
| <reports> |
| <report>aggregate</report> |
| </reports> |
| </reportSet> |
| <reportSet> |
| <id>default</id> |
| <reports> |
| <report>javadoc</report> |
| <report>test-javadoc</report> |
| </reports> |
| </reportSet> |
| </reportSets> |
| <configuration> |
| <skipModules>dist</skipModules> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-jxr-plugin</artifactId> |
| <reportSets> |
| <reportSet> |
| <id>aggregate</id> |
| <inherited>false</inherited> |
| <reports> |
| <report>aggregate</report> |
| </reports> |
| </reportSet> |
| </reportSets> |
| </plugin> |
| </plugins> |
| </reporting> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.fulcrum</groupId> |
| <artifactId>fulcrum-testcontainer</artifactId> |
| <version>1.0.9</version> |
| <scope>test</scope> |
| </dependency> |
| <!-- Log4j2 should be used by default, removed optional --> |
| <dependency> |
| <groupId>org.apache.logging.log4j</groupId> |
| <artifactId>log4j-api</artifactId> |
| <version>${turbine.log4j2.version}</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.logging.log4j</groupId> |
| <artifactId>log4j-core</artifactId> |
| <version>${turbine.log4j2.version}</version> |
| <scope>test</scope> |
| </dependency> |
| <!-- log4j1.2 bridge instead of log4j --> |
| <dependency> |
| <groupId>org.apache.logging.log4j</groupId> |
| <artifactId>log4j-1.2-api</artifactId> |
| <version>${turbine.log4j2.version}</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.junit.platform</groupId> |
| <artifactId>junit-platform-runner</artifactId> |
| <version>1.9.2</version> |
| <scope>test</scope> |
| </dependency> |
| </dependencies> |
| |
| <properties> |
| <turbine.site.path>turbine-fulcrum-json</turbine.site.path> |
| <turbine.scmPubCheckoutDirectory>${turbine.site.cache}/fulcrum/json</turbine.scmPubCheckoutDirectory> |
| </properties> |
| |
| </project> |