nucleus-engine
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.impactupgrade</groupId> <artifactId>nucleus-engine</artifactId> <version>3.4.0-beta-1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright (c) 2021 3River Development LLC, DBA Impact Upgrade. All rights reserved. --> <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>com.impactupgrade</groupId> <artifactId>nucleus-parent</artifactId> <version>1.0.19.Final</version> </parent> <artifactId>nucleus-engine</artifactId> <version>3.4.0-beta-1</version> <name>Nonprofit Nucleus: Engine</name> <description>TODO</description> <url>https://www.impactupgrade.com/nonprofit-nucleus</url> <scm> <url>https://github.com/impactupgrade/nucleus-engine</url> </scm> <organization> <name>Impact Upgrade</name> <url>https://www.impactupgrade.com</url> </organization> <developers> <developer> <name>Brett Meyer</name> <email>brett@impactupgrade.com</email> <organization>Impact Upgrade</organization> <organizationUrl>https://www.impactupgrade.com</organizationUrl> </developer> </developers> <dependencies> <dependency> <groupId>com.ecwid</groupId> <artifactId>maleorang</artifactId> <version>3.0-0.9.6</version> <exclusions> <exclusion> <groupId>org.jetbrains.kotlin</groupId> <artifactId>*</artifactId> </exclusion> </exclusions> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.6</version> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <!-- Allows the example to be run via 'mvn compile exec:java' --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.6.0</version> <configuration> <mainClass>com.impactupgrade.nucleus.App</mainClass> <includePluginDependencies>false</includePluginDependencies> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>it</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <version>2.22.2</version> <configuration> <argLine>--enable-preview</argLine> </configuration> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <!-- Using https://github.com/impactupgrade/nucleus-parent/packages as a private repo. Assumes you have the following in your ~/.m2/settings.xml: <server> <id>github</id> <configuration> <httpHeaders> <property> <name>YOUR USERNAME</name> <value>YOUR TOKEN</value> </property> </httpHeaders> </configuration> </server> Create your own token here: https://github.com/settings/tokens/new. Enable the "write:packages" scope. --> <repositories> <repository> <id>github</id> <url>https://maven.pkg.github.com/impactupgrade/*</url> <snapshots> <enabled>true</enabled> </snapshots> </repository> <!-- allow sonatype snapshots, primarily for open source SDKs from Impact Upgrade --> <repository> <id>oss.sonatype.org-snapshot</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> <distributionManagement> <snapshotRepository> <id>github</id> <url>https://maven.pkg.github.com/impactupgrade/nucleus-engine</url> </snapshotRepository> <repository> <id>github</id> <url>https://maven.pkg.github.com/impactupgrade/nucleus-engine</url> </repository> </distributionManagement> </project>