neo4j-graphql-java-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.neo4j</groupId> <artifactId>neo4j-graphql-java-parent</artifactId> <version>2.0.0-alpha</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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>org.neo4j</groupId> <artifactId>neo4j-graphql-java-parent</artifactId> <name>Neo4j GraphQL Java Parent</name> <description>GraphQL to Cypher Mapping</description> <version>2.0.0-alpha</version> <url>https://github.com/neo4j-graphql/neo4j-graphql-java</url> <packaging>pom</packaging> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <java.version>17</java.version> <kotlin.version>1.9.25</kotlin.version> <kotlin.compiler.jvmTarget>${java.version}</kotlin.compiler.jvmTarget> <neo4j.version>5.24.0</neo4j.version> <neo4j-apoc.version>5.24.0</neo4j-apoc.version> <junit-jupiter.version>5.11.0</junit-jupiter.version> <neo4j-cypher-dsl.version>2024.4.0</neo4j-cypher-dsl.version> </properties> <modules> <module>neo4j-graphql-neo4j-adapter-api</module> <module>neo4j-graphql-neo4j-driver-adapter</module> <module>core</module> <module>neo4j-graphql-augmented-schema-generator-maven-plugin</module> <module>examples</module> </modules> <organization> <name>Neo Technology</name> <url>https://neo4j.com</url> </organization> <developers> <developer> <id>jexp</id> <name>Michael Hunger</name> <email>michael@neo4j.com</email> </developer> <developer> <id>Andy2003</id> <name>Andreas Berger</name> <email>andreas@berger-ecommerce.com</email> </developer> </developers> <scm> <connection>scm:git:git@github.com:neo4j-graphql/neo4j-graphql-java.git</connection> <developerConnection>scm:git:git@github.com:neo4j-graphql/neo4j-graphql-java.git</developerConnection> <url>git@github.com:neo4j-graphql/neo4j-graphql-java.git</url> </scm> <dependencies> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib-jdk8</artifactId> <version>${kotlin.version}</version> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-test-junit5</artifactId> <version>${kotlin.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory> <testSourceDirectory>${project.basedir}/src/test/kotlin</testSourceDirectory> <plugins> <plugin> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-maven-plugin</artifactId> <version>${kotlin.version}</version> <executions> <execution> <id>compile</id> <phase>compile</phase> <goals> <goal>compile</goal> </goals> </execution> <execution> <id>test-compile</id> <phase>test-compile</phase> <goals> <goal>test-compile</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.10.1</version> <executions> <execution> <id>compile</id> <phase>compile</phase> <goals> <goal>compile</goal> </goals> </execution> <execution> <id>testCompile</id> <phase>test-compile</phase> <goals> <goal>testCompile</goal> </goals> </execution> </executions> <configuration> <source>${java.version}</source> <target>${java.version}</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.jetbrains.dokka</groupId> <artifactId>dokka-maven-plugin</artifactId> <version>1.9.20</version> <executions> <execution> <phase>prepare-package</phase> <goals> <goal>dokka</goal> <goal>javadoc</goal> <goal>javadocJar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.5.0</version> </plugin> <plugin> <groupId>com.amashchenko.maven.plugin</groupId> <artifactId>gitflow-maven-plugin</artifactId> <version>1.21.0</version> <configuration> <skipTag>true</skipTag> <pushRemote>false</pushRemote> <gitFlowConfig> <productionBranch>master-v2</productionBranch> <developmentBranch>master-v2</developmentBranch> </gitFlowConfig> <argLine>-P-create-test-file-diff</argLine> <releaseMergeFFOnly>true</releaseMergeFFOnly> <commitMessages> <releaseStartMessage>Update versions for release @{version}</releaseStartMessage> </commitMessages> </configuration> </plugin> </plugins> </build> <pluginRepositories> <pluginRepository> <id>jcenter</id> <name>JCenter</name> <url>https://jcenter.bintray.com/</url> </pluginRepository> </pluginRepositories> <profiles> <profile> <id>release-sign-artifacts</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.jetbrains.dokka</groupId> <artifactId>dokka-maven-plugin</artifactId> <version>1.7.10</version> <executions> <execution> <phase>prepare-package</phase> <goals> <goal>dokka</goal> <goal>javadoc</goal> <goal>javadocJar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</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> </plugins> </build> </profile> <profile> <id>update-doc</id> <activation> <activeByDefault>false</activeByDefault> </activation> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>3.3.0</version> <executions> <execution> <id>update_readme</id> <goals> <goal>exec</goal> </goals> <phase>process-resources</phase> <configuration> <executable>sed</executable> <arguments> <argument>-i</argument> <argument>s/\(:version:\) \(.*\)/\1 ${project.version}/g</argument> <argument>readme.adoc</argument> </arguments> </configuration> </execution> </executions> <inherited>false</inherited> </plugin> </plugins> </build> </profile> </profiles> </project>