Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions elemental-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,16 @@
<surefire.reuseForks>true</surefire.reuseForks>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>3.0.2</version>
</dependency>
</dependencies>
</dependencyManagement>

<build>
<pluginManagement>
<plugins>
Expand Down
102 changes: 102 additions & 0 deletions exist-core-build-tools/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--

Elemental
Copyright (C) 2024, Evolved Binary Ltd

admin@evolvedbinary.com
https://www.evolvedbinary.com | https://www.elemental.xyz

This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; version 2.1.

This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA

-->
<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>xyz.elemental</groupId>
<artifactId>elemental-parent</artifactId>
<version>7.3.0-SNAPSHOT</version>
<relativePath>../elemental-parent</relativePath>
</parent>

<artifactId>exist-core-build-tools</artifactId>
<packaging>jar</packaging>

<name>eXist-db Core Build Tools</name>
<description>Tools for building exist-core</description>

<scm>
<connection>scm:git:https://github.com/evolvedbinary/elemental.git</connection>
<developerConnection>scm:git:https://github.com/evolvedbinary/elemental.git</developerConnection>
<url>scm:git:https://github.com/evolvedbinary/elemental.git</url>
<tag>HEAD</tag>
</scm>

<dependencies>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
</dependency>
<dependency>
<groupId>com.palantir.javapoet</groupId>
<artifactId>javapoet</artifactId>
<version>0.7.0</version>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<configuration>
<licenseSets>
<licenseSet>
<!--
Elemental License - (LGPL 2.1 only)
-->
<header>${project.parent.relativePath}/elemental-LGPL-21-ONLY-license.template.txt</header>
<includes>
<include>src/main/java/xyz/elemental/build/tools/spoon/processors/PermissionRequiredProcessor.java</include>
</includes>
</licenseSet>
</licenseSets>
</configuration>
<executions>
<execution>
<id>check-headers</id>
<phase>verify</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<!--
NOTE(AR) needed so that we don't try and process ourselves
i.e. the META-INF/services/javax.annotation.processing.Processor defined in this project
-->
<proc>none</proc>
</configuration>
</plugin>
</plugins>
</build>

</project>
Loading
Loading