synthforge-spring
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.thembatman0</groupId>
<artifactId>synthforge-spring</artifactId>
<version>0.1.0</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>
<groupId>io.github.thembatman0</groupId>
<artifactId>synthforge-spring</artifactId>
<version>0.1.0</version>
<name>SynthForge Spring Boot Starter</name>
<description>Spring Boot autoconfiguration and the @Seed annotation for
SynthForge.</description>
<url>https://github.com/ThembaTman0/synthforge</url>
<licenses>
<license>
<name>MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>ThembaTman0</id>
<url>https://github.com/ThembaTman0</url>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/ThembaTman0/synthforge.git</connection>
<developerConnection>scm:git:git@github.com:ThembaTman0/synthforge.git</developerConnection>
<url>https://github.com/ThembaTman0/synthforge</url>
</scm>
<dependencies>
<dependency>
<groupId>io.github.thembatman0</groupId>
<artifactId>synthforge-core</artifactId>
<version>0.1.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
<version>4.1.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
<version>4.1.0</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.11.0</version>
<extensions>true</extensions>
</plugin>
</plugins>
</build>
</project>