
archetype-resources.pom.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gemini-resin-archetype
Show all versions of gemini-resin-archetype
An archetype project for building Gemini applications.
The newest version!
<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>${groupId}</groupId> <artifactId>${artifactId}</artifactId> <version>${version}</version> <packaging>jar</packaging> <name>A custom Gemini project</name> <properties> <maven.compiler.source>11</maven.compiler.source> <maven.compiler.target>11</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> </properties> <dependencies> <dependency> <groupId>com.caucho</groupId> <artifactId>resin</artifactId> <version>4.0.63</version> <scope>runtime</scope> <optional>true</optional> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>3.1.0</version> <optional>true</optional> </dependency> <dependency> <groupId>com.techempower</groupId> <artifactId>gemini</artifactId> <version>${geminiVersion}</version> </dependency> <dependency> <groupId>com.techempower</groupId> <artifactId>gemini-resin</artifactId> <version>${geminiVersion}</version> </dependency> <dependency> <groupId>com.techempower</groupId> <artifactId>gemini-logback</artifactId> <version>${geminiVersion}</version> </dependency> <dependency> <groupId>com.techempower</groupId> <artifactId>gemini-jdbc</artifactId> <version>${geminiVersion}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.8.0-beta4</version> </dependency> <!-- gemini-hikaricp is an alternative to gemini-jdbc --> <!-- <dependency> --> <!-- <groupId>com.techempower</groupId> --> <!-- <artifactId>gemini-hikaricp</artifactId> --> <!-- </dependency> --> </dependencies> </project>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy