archetype
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.unlp-oo</groupId> <artifactId>archetype</artifactId> <version>1.0.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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>io.github.unlp-oo</groupId> <artifactId>archetype</artifactId> <version>1.0.0</version> <packaging>jar</packaging> <name>archetype-objetos</name> <description>Este arquetipo es usado para objetos I y II</description> <url>https://lifia.info.unlp.edu.ar/</url> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <id>gperez</id> <name>gabriela perez</name> <email>gabriela.perez@gmail.com</email> </developer> </developers> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>11</maven.compiler.source> <maven.compiler.target>11</maven.compiler.target> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.22.2</version> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>5.7.2</version> <scope>test</scope> </dependency> </dependencies> <scm> <connection>scm:git:git://github.com/unlp-oo/archetype.git</connection> <developerConnection>scm:git:ssh://github.com:unlp-oo/archetype.git</developerConnection> <url>https://github.com/unlp-oo/archetype</url> </scm> </project>