|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 5 | + <modelVersion>4.0.0</modelVersion> |
| 6 | + |
| 7 | + <parent> |
| 8 | + <groupId>io.jsonwebtoken</groupId> |
| 9 | + <artifactId>jjwt-integration-tests</artifactId> |
| 10 | + <version>0.12.7-SNAPSHOT</version> |
| 11 | + </parent> |
| 12 | + |
| 13 | + <artifactId>jjwt-integration-tests-unsigned-jackson</artifactId> |
| 14 | + <name>JJWT :: Integration-Tests :: unsigned-jackson</name> |
| 15 | + <description>Create and parse an unsigned JWT using Jackson and JPMS.</description> |
| 16 | + <packaging>jar</packaging> |
| 17 | + |
| 18 | + <properties> |
| 19 | + <maven.compiler.release>9</maven.compiler.release> |
| 20 | + <maven.deploy.skip>true</maven.deploy.skip> |
| 21 | + </properties> |
| 22 | + |
| 23 | + <dependencies> |
| 24 | + <dependency> |
| 25 | + <groupId>io.jsonwebtoken</groupId> |
| 26 | + <artifactId>jjwt-api</artifactId> |
| 27 | + <version>${project.version}</version> |
| 28 | + </dependency> |
| 29 | + <dependency> |
| 30 | + <groupId>io.jsonwebtoken</groupId> |
| 31 | + <artifactId>jjwt-impl</artifactId> |
| 32 | + <version>${project.version}</version> |
| 33 | + <scope>runtime</scope> |
| 34 | + </dependency> |
| 35 | + <dependency> |
| 36 | + <groupId>io.jsonwebtoken</groupId> |
| 37 | + <artifactId>jjwt-jackson</artifactId> |
| 38 | + <version>${project.version}</version> |
| 39 | + <scope>runtime</scope> |
| 40 | + </dependency> |
| 41 | + </dependencies> |
| 42 | + |
| 43 | + <build> |
| 44 | + <plugins> |
| 45 | + <plugin> |
| 46 | + <groupId>org.apache.maven.plugins</groupId> |
| 47 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 48 | + <configuration> |
| 49 | + <skip>true</skip> |
| 50 | + <detectJavaApiLink>false</detectJavaApiLink> |
| 51 | + </configuration> |
| 52 | + </plugin> |
| 53 | + <!-- |
| 54 | + this plugin needs to be disabled as long as we are stuck with plugin version 3.3.0, as it cannot |
| 55 | + handle Java 9 module-info.class files. |
| 56 | + This will also use an empty MANIFEST.MF file, since there is no way in maven to unsetting |
| 57 | + an entry (like archive/manifestFile for the jar plugin). |
| 58 | + --> |
| 59 | + <plugin> |
| 60 | + <groupId>org.apache.felix</groupId> |
| 61 | + <artifactId>maven-bundle-plugin</artifactId> |
| 62 | + <executions> |
| 63 | + <execution> |
| 64 | + <id>bundle-manifest</id> |
| 65 | + <phase>none</phase> |
| 66 | + </execution> |
| 67 | + </executions> |
| 68 | + </plugin> |
| 69 | + </plugins> |
| 70 | + </build> |
| 71 | + |
| 72 | +</project> |
0 commit comments