storm-json
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>st.orm</groupId> <artifactId>storm-json</artifactId> <version>1.3.8</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> <parent> <groupId>st.orm</groupId> <artifactId>storm-framework</artifactId> <version>1.3.8</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>storm-json</artifactId> <name>Storm Json</name> <description>Json extensions for Storm.</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> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <argLine> --enable-preview --add-opens java.base/java.lang=ALL-UNNAMED --add-opens storm/st.orm=ALL-UNNAMED --add-opens=storm.json/st.orm.json=storm --add-opens=storm.json/st.orm.json.model=storm --add-opens=storm.json/st.orm.json=com.fasterxml.jackson.databind --add-opens=storm.json/st.orm.json.model=com.fasterxml.jackson.databind </argLine> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>st.orm</groupId> <artifactId>storm</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>[2.12.0,)</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>[2.12.0,)</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> <version>[2.12.0,)</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-tx</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-jpa</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-jdbc</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.30</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mariadb.jdbc</groupId> <artifactId>mariadb-java-client</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <scope>test</scope> </dependency> </dependencies> </project>