convex
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>world.convex</groupId> <artifactId>convex</artifactId> <version>0.7.0-rc3</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>world.convex</groupId> <artifactId>convex</artifactId> <version>0.7.0-rc3</version> <packaging>pom</packaging> <name>Convex Parent</name> <description>Parent POM used to build core Convex modules.</description> <url>https://convex.world</url> <modules> <module>convex-core</module> <module>convex-cli</module> <module>convex-gui</module> <module>convex-peer</module> <module>convex-benchmarks</module> </modules> <properties> <maven.compiler.target>11</maven.compiler.target> <maven.compiler.source>11</maven.compiler.source> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <jmh.version>1.32</jmh.version> <junit.version>5.7.1</junit.version> <slf4j.version>1.7.31</slf4j.version> <convex.version>${project.version}</convex.version> <!--Freeze this for reproducible builds. --> <project.build.outputTimestamp>2020-02-02T00:00:00Z</project.build.outputTimestamp> <argLine> --illegal-access=permit --add-opens=java.base/java.util=ALL-UNNAMED </argLine> </properties> <licenses> <license> <name>Convex Public License</name> <url>https://github.com/Convex-Dev/convex/blob/master/LICENSE.md</url> </license> </licenses> <developers> <developer> <name>Mike Anderson</name> <email>mike@convex.world</email> <organization>Convex Foundation</organization> <organizationUrl>https://convex.world</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git://github.com/Convex-Dev/convex.git</connection> <developerConnection>scm:git:ssh://github.com:Convex-Dev/convex.git</developerConnection> <url>https://github.com/Convex-Dev/convex.git</url> </scm> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <profiles> <profile> <id>only-eclipse</id> <activation> <property> <name>m2e.version</name> </property> </activation> <build> <pluginManagement> <plugins> <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself. --> <plugin> <groupId>org.eclipse.m2e</groupId> <artifactId>lifecycle-mapping</artifactId> <version>1.0.0</version> <configuration> <lifecycleMappingMetadata> <pluginExecutions> </pluginExecutions> </lifecycleMappingMetadata> </configuration> </plugin> </plugins> </pluginManagement> </build> </profile> <profile> <id>release</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <!-- This adds GPG signing for all artifacts --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <!-- This adds sources --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <!-- This generates JavaDocs --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.2.0</version> <configuration> <doclint>syntax</doclint> <quiet /> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <build> <plugins> <!-- Use this to require a minimum Maven version --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>3.0.0-M3</version> <executions> <execution> <id>enforce-maven</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireMavenVersion> <version>3.6</version> </requireMavenVersion> </rules> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> <pluginManagement> <plugins> <!-- Need newer surefire plugin version for JUnit 5 tests --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.0.0-M4</version> </plugin> </plugins> </pluginManagement> </build> </project>