| <?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"> |
| |
| <modelVersion>4.0.0</modelVersion> |
| |
| <parent> |
| <groupId>org.apache</groupId> |
| <artifactId>apache</artifactId> |
| <version>17</version> |
| <relativePath /> |
| </parent> |
| |
| <groupId>org.apache.griffin</groupId> |
| <artifactId>griffin</artifactId> |
| <version>0.2.0-incubating-SNAPSHOT</version> |
| <packaging>pom</packaging> |
| <name>Apache Griffin ${project.version}</name> |
| <url>http://griffin.incubator.apache.org</url> |
| |
| <prerequisites> |
| <maven>3.2.5</maven> |
| </prerequisites> |
| |
| <properties> |
| <java.version>1.8</java.version> |
| <maven-apache-rat.version>0.11</maven-apache-rat.version> |
| <exec-maven-plugin.version>1.6.0</exec-maven-plugin.version> |
| <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> |
| </properties> |
| |
| <licenses> |
| <license> |
| <name>The Apache Software License, Version 2.0</name> |
| <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| </license> |
| </licenses> |
| |
| <organization> |
| <name>Apache Software Foundation</name> |
| <url>http://www.apache.org</url> |
| </organization> |
| |
| <issueManagement> |
| <system>JIRA</system> |
| <url>https://issues.apache.org/jira/browse/GRIFFIN</url> |
| </issueManagement> |
| |
| <mailingLists> |
| <mailingList> |
| <name>griffin-dev</name> |
| <subscribe>dev-subscribe@griffin.incubator.apache.org</subscribe> |
| <unsubscribe>dev-unsubscribe@griffin.incubator.apache.org</unsubscribe> |
| <post>dev@griffin.incubator.apache.org</post> |
| </mailingList> |
| </mailingLists> |
| |
| <!--<pluginRepositories>--> |
| <!--</pluginRepositories>--> |
| |
| <scm> |
| <connection>scm:git:https://git-wip-us.apache.org/repos/asf/incubator-griffin.git</connection> |
| <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/incubator-griffin.git</developerConnection> |
| <url>https://git-wip-us.apache.org/repos/asf?p=incubator-griffin.git;a=summary</url> |
| <tag>HEAD</tag> |
| </scm> |
| |
| <distributionManagement> |
| </distributionManagement> |
| |
| |
| <modules> |
| <module>ui</module> |
| <module>service</module> |
| <module>measure</module> |
| </modules> |
| |
| |
| <build> |
| <pluginManagement> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-compiler-plugin</artifactId> |
| <version>3.6.1</version> |
| <configuration> |
| <source>${maven.compiler.source}</source> |
| <target>${maven.compiler.target}</target> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.rat</groupId> |
| <artifactId>apache-rat-plugin</artifactId> |
| <version>${maven-apache-rat.version}</version> |
| <configuration> |
| <!-- Exclude files/folders for apache release --> |
| <excludes> |
| <!-- Git specific files --> |
| <exclude>.git/</exclude> |
| <exclude>.gitignore</exclude> |
| <!-- IDE specific files--> |
| <exclude>**/.idea/</exclude> |
| <exclude>**/.scalastyle/</exclude> |
| <exclude>**/*.iml</exclude> |
| <exclude>**/.classpath</exclude> |
| <exclude>**/.settings/**</exclude> |
| <exclude>**/.project</exclude> |
| <!-- Maven working directory --> |
| <exclude>**/target/**</exclude> |
| <!-- Patch files which can be lying around --> |
| <exclude>**/*.patch</exclude> |
| <exclude>**/*.rej</exclude> |
| <!-- README and test data with exact format --> |
| <exclude>README*</exclude> |
| <exclude>DEPENDENCIES</exclude> |
| <exclude>**/licenses/*</exclude> |
| <exclude>**/*.log</exclude> |
| <exclude>**/*.out</exclude> |
| <exclude>**/*.db</exclude> |
| <exclude>**/velocity.log*</exclude> |
| <exclude>**/*.json</exclude> |
| <exclude>**/*.avro</exclude> |
| <exclude>**/*.dat</exclude> |
| <exclude>**/banner.txt</exclude> |
| <exclude>**/bower_components/**</exclude> |
| <exclude>**/node_modules/**</exclude> |
| <exclude>**/.tmp/**</exclude> |
| <exclude>**/angular/src/assets/.gitkeep</exclude> |
| <exclude>**/angular/.editorconfig</exclude> |
| <exclude>**/dist/**</exclude> |
| <exclude>**/.bowerrc</exclude> |
| <exclude>**/src/main/resources/public/**</exclude> |
| <exclude>**/pom.xml.releaseBackup</exclude> |
| <exclude>**/pom.xml.tag</exclude> |
| </excludes> |
| </configuration> |
| <executions> |
| <execution> |
| <id>rat-check</id> |
| <phase>validate</phase> |
| <goals> |
| <goal>check</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </pluginManagement> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-compiler-plugin</artifactId> |
| </plugin> |
| |
| </plugins> |
| </build> |
| |
| </project> |