java-koans-archetype
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.davidwhitlock.joy</groupId>
<artifactId>java-koans-archetype</artifactId>
<version>2.2.6</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">
<parent>
<artifactId>archetypes-parent</artifactId>
<groupId>io.github.davidwhitlock.joy</groupId>
<version>2.2.6</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>java-koans-archetype</artifactId>
<version>2.2.6</version>
<packaging>maven-archetype</packaging>
<name>java-koans-archetype</name>
<build>
<extensions>
<extension>
<groupId>org.apache.maven.archetype</groupId>
<artifactId>archetype-packaging</artifactId>
<version>${maven-archetype-plugin.version}</version>
</extension>
</extensions>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-archetype-plugin</artifactId>
<version>${maven-archetype-plugin.version}</version>
</plugin>
</plugins>
</pluginManagement>
</build>
<url>https://github.com/JoyOfCodingPDX/java-koans</url>
<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>
<repositories>
<repository>
<name>Central Portal Snapshots</name>
<id>central-portal-snapshots</id>
<url>https://central.sonatype.com/repository/maven-snapshots/</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
</project>