java-koans
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.davidwhitlock.joy.com.sandwich</groupId>
<artifactId>java-koans</artifactId>
<version>1.3.0</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 https://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.github.davidwhitlock.joy.com.sandwich</groupId>
<artifactId>koans-parent</artifactId>
<version>1.3.0</version>
</parent>
<groupId>io.github.davidwhitlock.joy.com.sandwich</groupId>
<artifactId>java-koans</artifactId>
<packaging>jar</packaging>
<version>1.3.0</version>
<name>Java Koans</name>
<inceptionYear>2012</inceptionYear>
<description>Java Koans to learn the Java language and APIs</description>
<url>https://github.com/JoyOfCodingPDX/java-koans</url>
<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>
<scm>
<connection>scm:git:git@github.com:JoyOfCodingPDX/java-koans.git</connection>
<developerConnection>scm:git:git@github.com:JoyOfCodingPDX/java-koans.git</developerConnection>
<url>https://github.com/JoyOfCodingPDX/java-koans/tree/main</url>
<tag>HEAD</tag>
</scm>
<developers>
<developer>
<id>matyb</id>
<name>Mat Bentley</name>
<url>https://github.com/matyb</url>
<roles>
<role>java-koans author</role>
</roles>
</developer>
<developer>
<id>dwhitlock</id>
<name>David Whitlock</name>
<url>https://www.cs.pdx.edu/~whitlock</url>
<roles>
<role>Maven-izer</role>
</roles>
</developer>
<developer>
<id>YOU</id>
<name>Your name here</name>
<email>you@youremail.com</email>
<url>https://www.cs.pdx.edu/~YOU</url>
<organization>PSU Department of Computer Science</organization>
<organizationUrl>https://www.cs.pdx.edu</organizationUrl>
<roles>
<role>Student who does koans</role>
</roles>
<timezone>-7</timezone>
</developer>
</developers>
<prerequisites>
<maven>3.5.2</maven>
</prerequisites>
<dependencies>
<dependency>
<groupId>io.github.davidwhitlock.joy.com.sandwich</groupId>
<artifactId>koans-lib</artifactId>
<version>1.3.0</version>
</dependency>
</dependencies>
<properties>
<interactive>true</interactive>
</properties>
<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<!-- No unit tests for koans project -->
<failIfNoTests>false</failIfNoTests>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<goals>
<goal>java</goal>
</goals>
</execution>
</executions>
<configuration>
<mainClass>com.sandwich.koan.runner.AppLauncher</mainClass>
<additionalClasspathElements>
<additionalClasspathElement>${basedir}/app/config</additionalClasspathElement>
</additionalClasspathElements>
<systemProperties>
<systemProperty>
<key>interactive</key>
<value>${interactive}</value>
</systemProperty>
</systemProperties>
</configuration>
</plugin>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<filesets>
<fileset>
<directory>${basedir}/app</directory>
<includes>
<include>data/**</include>
<include>bin/**</include>
<include>config/file_hashes.dat</include>
</includes>
</fileset>
</filesets>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>grader</id>
<activation>
<activeByDefault>${grader}</activeByDefault>
</activation>
<properties>
<interactive>false</interactive>
</properties>
</profile>
</profiles>
</project>