|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<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"> |
| 3 | + |
| 4 | + <modelVersion>4.0.0</modelVersion> |
| 5 | + |
| 6 | + <artifactId>jmolecules-apt</artifactId> |
| 7 | + <name>jMolecules - Annotation processor</name> |
| 8 | + |
| 9 | + <parent> |
| 10 | + <groupId>org.jmolecules.integrations</groupId> |
| 11 | + <artifactId>jmolecules-integrations</artifactId> |
| 12 | + <version>0.31.0-SNAPSHOT</version> |
| 13 | + </parent> |
| 14 | + |
| 15 | + <properties> |
| 16 | + <module.name>org.jmolecules.integrations.apt</module.name> |
| 17 | + <java.version>17</java.version> |
| 18 | + </properties> |
| 19 | + |
| 20 | + <dependencies> |
| 21 | + |
| 22 | + <dependency> |
| 23 | + <groupId>org.jmolecules</groupId> |
| 24 | + <artifactId>jmolecules-ddd</artifactId> |
| 25 | + <version>${jmolecules-next.version}</version> |
| 26 | + <optional>true</optional> |
| 27 | + </dependency> |
| 28 | + |
| 29 | + <dependency> |
| 30 | + <groupId>org.jmolecules.integrations</groupId> |
| 31 | + <artifactId>jmolecules-stereotype</artifactId> |
| 32 | + <version>${project.version}</version> |
| 33 | + </dependency> |
| 34 | + |
| 35 | + <dependency> |
| 36 | + <groupId>net.minidev</groupId> |
| 37 | + <artifactId>json-smart</artifactId> |
| 38 | + </dependency> |
| 39 | + |
| 40 | + <dependency> |
| 41 | + <groupId>com.jayway.jsonpath</groupId> |
| 42 | + <artifactId>json-path</artifactId> |
| 43 | + <scope>test</scope> |
| 44 | + </dependency> |
| 45 | + |
| 46 | + <dependency> |
| 47 | + <groupId>io.toolisticon.aptk</groupId> |
| 48 | + <artifactId>aptk-tools</artifactId> |
| 49 | + <version>${aptk-tools.version}</version> |
| 50 | + </dependency> |
| 51 | + |
| 52 | + <dependency> |
| 53 | + <groupId>io.toolisticon.cute</groupId> |
| 54 | + <artifactId>cute</artifactId> |
| 55 | + <version>1.7.0</version> |
| 56 | + <scope>test</scope> |
| 57 | + </dependency> |
| 58 | + |
| 59 | + </dependencies> |
| 60 | + |
| 61 | + <build> |
| 62 | + <plugins> |
| 63 | + |
| 64 | + <plugin> |
| 65 | + <groupId>org.apache.maven.plugins</groupId> |
| 66 | + <artifactId>maven-compiler-plugin</artifactId> |
| 67 | + <version>3.13.0</version> |
| 68 | + <executions> |
| 69 | + <execution> |
| 70 | + <id>default-compile</id> |
| 71 | + <configuration> |
| 72 | + <compilerArgument>-proc:none</compilerArgument> |
| 73 | + </configuration> |
| 74 | + </execution> |
| 75 | + </executions> |
| 76 | + </plugin> |
| 77 | + |
| 78 | + <plugin> |
| 79 | + <groupId>org.apache.maven.plugins</groupId> |
| 80 | + <artifactId>maven-shade-plugin</artifactId> |
| 81 | + <version>3.5.1</version> |
| 82 | + <executions> |
| 83 | + <execution> |
| 84 | + <phase>package</phase> |
| 85 | + <goals> |
| 86 | + <goal>shade</goal> |
| 87 | + </goals> |
| 88 | + <configuration> |
| 89 | + |
| 90 | + <artifactSet> |
| 91 | + <includes> |
| 92 | + <include>io.toolisticon.aptk:*</include> |
| 93 | + <include>net.minidev:*</include> |
| 94 | + </includes> |
| 95 | + </artifactSet> |
| 96 | + |
| 97 | + <relocations> |
| 98 | + <relocation> |
| 99 | + <pattern>io.toolisticon.aptk</pattern> |
| 100 | + <shadedPattern>org.jmolecules.annotation.processor.aptk</shadedPattern> |
| 101 | + </relocation> |
| 102 | + <relocation> |
| 103 | + <pattern>net.minidev</pattern> |
| 104 | + <shadedPattern>org.jmolecules.annotation.processor.net.minidev</shadedPattern> |
| 105 | + </relocation> |
| 106 | + </relocations> |
| 107 | + |
| 108 | + </configuration> |
| 109 | + </execution> |
| 110 | + </executions> |
| 111 | + </plugin> |
| 112 | + |
| 113 | + <plugin> |
| 114 | + <groupId>org.apache.maven.plugins</groupId> |
| 115 | + <artifactId>maven-jar-plugin</artifactId> |
| 116 | + <version>3.4.2</version> |
| 117 | + <configuration> |
| 118 | + <archive> |
| 119 | + <manifestEntries> |
| 120 | + <Spring-Boot-Jar-Type>annotation-processor</Spring-Boot-Jar-Type> |
| 121 | + </manifestEntries> |
| 122 | + </archive> |
| 123 | + </configuration> |
| 124 | + </plugin> |
| 125 | + |
| 126 | + </plugins> |
| 127 | + </build> |
| 128 | + |
| 129 | +</project> |
0 commit comments