example-j2ee-app
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.kinde</groupId> <artifactId>example-j2ee-app</artifactId> <version>2.1.0</version> </dependency>
<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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.kinde</groupId> <artifactId>kinde-parent-pom</artifactId> <version>2.1.0</version> <relativePath>../../pom.xml</relativePath> </parent> <groupId>com.kinde</groupId> <artifactId>example-j2ee-app</artifactId> <packaging>war</packaging> <version>2.1.0</version> <name>example-j2ee-app Maven Webapp</name> <url>http://maven.apache.org</url> <dependencies> <dependency> <groupId>com.nimbusds</groupId> <artifactId>oauth2-oidc-sdk</artifactId> <version>11.23.1</version> </dependency> <dependency> <groupId>com.nimbusds</groupId> <artifactId>nimbus-jose-jwt</artifactId> <version>9.48</version> </dependency> <dependency> <groupId>com.kinde</groupId> <artifactId>kinde-core</artifactId> <version>2.1.0</version> </dependency> <dependency> <groupId>com.kinde</groupId> <artifactId>kinde-j2ee</artifactId> <version>2.1.0</version> </dependency> <dependency> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> <!-- {version} can be 6.0.0, 7.0.0, etc. --> <version>7.0.0</version> </dependency> <!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>2.0.17</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> </dependency> <dependency> <groupId>jakarta.servlet</groupId> <artifactId>jakarta.servlet-api</artifactId> <version>5.0.0</version> <scope>provided</scope> </dependency> </dependencies> <build> <finalName>kinde-j2ee-app</finalName> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <version>3.4.0</version> <!-- Update this to the latest stable version --> </plugin> </plugins> </build> </project>