|
| 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 | + <!-- This module was also published with a richer model, Gradle metadata, --> |
| 4 | + <!-- which should be used instead. Do not delete the following line which --> |
| 5 | + <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> |
| 6 | + <!-- that they should prefer consuming it instead. --> |
| 7 | + <!-- do_not_remove: published-with-gradle-metadata --> |
| 8 | + <modelVersion>4.0.0</modelVersion> |
| 9 | + <parent> |
| 10 | + <groupId>com.fasterxml.jackson.dataformat</groupId> |
| 11 | + <artifactId>jackson-dataformats-text</artifactId> |
| 12 | + <version>3.0.0-SNAPSHOT</version> |
| 13 | + </parent> |
| 14 | + <artifactId>jackson-dataformat-toml</artifactId> |
| 15 | + <packaging>bundle</packaging> |
| 16 | + <name>Jackson-dataformat-TOML</name> |
| 17 | + <description>Support for reading and writing TOML-encoded data via Jackson abstractions. |
| 18 | + </description> |
| 19 | + <url>https://github.com/FasterXML/jackson-dataformats-text</url> |
| 20 | + |
| 21 | + <properties> |
| 22 | + <packageVersion.dir>com/fasterxml/jackson/dataformat/toml</packageVersion.dir> |
| 23 | + <packageVersion.package>${project.groupId}.toml</packageVersion.package> |
| 24 | + </properties> |
| 25 | + |
| 26 | + <dependencies> |
| 27 | + <dependency> |
| 28 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 29 | + <artifactId>jackson-databind</artifactId> |
| 30 | + </dependency> |
| 31 | + |
| 32 | + <dependency> |
| 33 | + <groupId>org.jetbrains</groupId> |
| 34 | + <artifactId>annotations</artifactId> |
| 35 | + <version>20.1.0</version> |
| 36 | + <scope>test</scope> |
| 37 | + </dependency> |
| 38 | + </dependencies> |
| 39 | + |
| 40 | + <build> |
| 41 | + <plugins> |
| 42 | + <plugin> |
| 43 | + <!-- Inherited from oss-base. Generate PackageVersion.java.--> |
| 44 | + <groupId>com.google.code.maven-replacer-plugin</groupId> |
| 45 | + <artifactId>replacer</artifactId> |
| 46 | + <executions> |
| 47 | + <execution> |
| 48 | + <id>process-packageVersion</id> |
| 49 | + <phase>generate-sources</phase> |
| 50 | + </execution> |
| 51 | + </executions> |
| 52 | + </plugin> |
| 53 | + <plugin> |
| 54 | + <groupId>org.moditect</groupId> |
| 55 | + <artifactId>moditect-maven-plugin</artifactId> |
| 56 | + </plugin> |
| 57 | + <plugin> |
| 58 | + <groupId>de.jflex</groupId> |
| 59 | + <artifactId>jflex-maven-plugin</artifactId> |
| 60 | + <version>1.8.2</version> |
| 61 | + <executions> |
| 62 | + <execution> |
| 63 | + <phase>generate-sources</phase> |
| 64 | + <goals> |
| 65 | + <goal>generate</goal> |
| 66 | + </goals> |
| 67 | + </execution> |
| 68 | + </executions> |
| 69 | + <configuration> |
| 70 | + <backup>false</backup> |
| 71 | + <outputDirectory>${project.build.directory}/generated-sources</outputDirectory> |
| 72 | + </configuration> |
| 73 | + </plugin> |
| 74 | + </plugins> |
| 75 | + </build> |
| 76 | +</project> |
0 commit comments