54 lines
1.9 KiB
XML
54 lines
1.9 KiB
XML
<?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">
|
|
<parent>
|
|
<groupId>io.soabase.record-builder</groupId>
|
|
<artifactId>record-builder</artifactId>
|
|
<version>1.6.ea</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>record-builder-processor</artifactId>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.squareup</groupId>
|
|
<artifactId>javapoet</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.soabase.record-builder</groupId>
|
|
<artifactId>record-builder-core</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<proc>none</proc>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<!--plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<configuration>
|
|
<artifactSet>
|
|
<includes>
|
|
<include>com.squareup:javapoet</include>
|
|
<include>io.soabase.record-builder:record-builder-processor</include>
|
|
</includes>
|
|
</artifactSet>
|
|
<relocations>
|
|
<relocation>
|
|
<pattern>com.squareup.javapoet</pattern>
|
|
<shadedPattern>io.soabase.com.squareup.javapoet</shadedPattern>
|
|
</relocation>
|
|
</relocations>
|
|
</configuration>
|
|
</plugin-->
|
|
</plugins>
|
|
</build>
|
|
</project>
|