wirej
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.gergilcan</groupId> <artifactId>wirej</artifactId> <version>1.0.0.13</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>io.github.gergilcan</groupId> <artifactId>wirej-parent</artifactId> <version>1.0.0.13</version> </parent> <artifactId>wirej</artifactId> <packaging>jar</packaging> <name>WireJ</name> <description>WireJ Application - Spring Boot integration for the WireJ framework</description> <dependencies> <!-- Spring Boot Starter Web --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <!-- Spring Boot Starter JDBC (for DataSource) --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-jdbc</artifactId> </dependency> <!-- Lombok --> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>io.github.gergilcan</groupId> <artifactId>PostgreSQL-mapper</artifactId> <version>0.0.6</version> </dependency> <!-- Annotation Processor for design-time IDE support --> <dependency> <groupId>io.github.gergilcan</groupId> <artifactId>wirej-annotations</artifactId> <version>1.0.0.13</version> </dependency> <!-- Test Dependencies --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <!-- In-memory database for testing and default datasource --> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> </dependency> <dependency> <groupId>org.junit.platform</groupId> <artifactId>junit-platform-launcher</artifactId> <scope>test</scope> </dependency> <!-- If you're generating JPA repositories --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-jpa</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <!-- Spring Boot Maven Plugin --> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <version>${spring-boot.version}</version> <configuration> <excludes> <exclude> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> </exclude> </excludes> </configuration> </plugin> <!-- Maven Compiler Plugin with annotation processors --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.11.0</version> <configuration> <source>21</source> <target>21</target> <parameters>true</parameters> <!-- Ensure annotation processing is enabled --> <proc>full</proc> <!-- Add generatedSourcesDirectory for better IDE integration --> <generatedSourcesDirectory> ${project.build.directory}/generated-sources/annotations</generatedSourcesDirectory> <annotationProcessorPaths> <path> <groupId>io.github.gergilcan</groupId> <artifactId>wirej-processor</artifactId> <version>${project.version}</version> </path> <path> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.32</version> </path> </annotationProcessorPaths> </configuration> </plugin> <!-- Maven Surefire Plugin for testing --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.1.2</version> </plugin> </plugins> </build> </project>