storm-foundation
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>st.orm</groupId>
<artifactId>storm-foundation</artifactId>
<version>1.12.1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>st.orm</groupId>
<artifactId>storm-framework</artifactId>
<version>1.12.1</version>
</parent>
<artifactId>storm-foundation</artifactId>
<version>1.12.1</version>
<name>Storm Foundation</name>
<description>Foundational Storm interfaces, shared by the Java and Kotlin packages.</description>
<url>https://github.com/storm-repo/storm-framework</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>
<name>Leon van Zantvoort</name>
<email>storm@zantvoort.biz</email>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/storm-repo/storm-framework.git</connection>
<developerConnection>scm:git:ssh://github.com/storm-repo/storm-framework.git</developerConnection>
<url>https://github.com/storm-repo/storm-framework/</url>
</scm>
<dependencies>
<dependency>
<groupId>jakarta.persistence</groupId>
<artifactId>jakarta.persistence-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>jakarta.annotation</groupId>
<artifactId>jakarta.annotation-api</artifactId>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<release>${java.version}</release>
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.30</version>
</path>
<path>
<groupId>st.orm</groupId>
<artifactId>storm-metamodel-processor</artifactId>
<version>${project.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
</plugins>
</build>
</project>