|
| 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" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | + <modelVersion>4.0.0</modelVersion> |
| 5 | + |
| 6 | + <parent> |
| 7 | + <groupId>com.j2html</groupId> |
| 8 | + <artifactId>j2html-parent</artifactId> |
| 9 | + <version>1.6.1-SNAPSHOT</version> |
| 10 | + </parent> |
| 11 | + |
| 12 | + <name>j2html-ext-mathml</name> |
| 13 | + <artifactId>j2html-ext-mathml</artifactId> |
| 14 | + |
| 15 | + <dependencies> |
| 16 | + <dependency> |
| 17 | + <groupId>junit</groupId> |
| 18 | + <artifactId>junit</artifactId> |
| 19 | + <scope>test</scope> |
| 20 | + </dependency> |
| 21 | + |
| 22 | + <dependency> |
| 23 | + <groupId>com.j2html</groupId> |
| 24 | + <artifactId>j2html</artifactId> |
| 25 | + <version>1.6.1-SNAPSHOT</version> |
| 26 | + </dependency> |
| 27 | + </dependencies> |
| 28 | + |
| 29 | + <packaging>jar</packaging> |
| 30 | + |
| 31 | + <build> |
| 32 | + <plugins> |
| 33 | + <plugin> |
| 34 | + <groupId>com.j2html</groupId> |
| 35 | + <artifactId>j2html-codegen-maven-plugin</artifactId> |
| 36 | + <version>1.6.1-SNAPSHOT</version> |
| 37 | + <executions> |
| 38 | + <execution> |
| 39 | + <goals> |
| 40 | + <goal>generate-source-files</goal> |
| 41 | + </goals> |
| 42 | + </execution> |
| 43 | + </executions> |
| 44 | + <configuration> |
| 45 | + <modelFile>${project.basedir}/src/main/models/mathml.model</modelFile> |
| 46 | + <attributePackage>com.j2html.mathml.attributes</attributePackage> |
| 47 | + <tagPackage>com.j2html.mathml.tags</tagPackage> |
| 48 | + </configuration> |
| 49 | + </plugin> |
| 50 | + |
| 51 | + <plugin> |
| 52 | + <groupId>org.apache.maven.plugins</groupId> |
| 53 | + <artifactId>maven-compiler-plugin</artifactId> |
| 54 | + </plugin> |
| 55 | + |
| 56 | + <plugin> |
| 57 | + <groupId>org.apache.maven.plugins</groupId> |
| 58 | + <artifactId>maven-release-plugin</artifactId> |
| 59 | + <executions> |
| 60 | + <execution> |
| 61 | + <id>default</id> |
| 62 | + <goals> |
| 63 | + <goal>perform</goal> |
| 64 | + </goals> |
| 65 | + <configuration> |
| 66 | + <pomFileName>pom.xml</pomFileName> |
| 67 | + </configuration> |
| 68 | + </execution> |
| 69 | + </executions> |
| 70 | + </plugin> |
| 71 | + |
| 72 | + <plugin> |
| 73 | + <groupId>org.apache.maven.plugins</groupId> |
| 74 | + <artifactId>maven-enforcer-plugin</artifactId> |
| 75 | + </plugin> |
| 76 | + |
| 77 | + <plugin> |
| 78 | + <groupId>org.apache.maven.plugins</groupId> |
| 79 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 80 | + </plugin> |
| 81 | + |
| 82 | + <plugin> |
| 83 | + <groupId>org.apache.maven.plugins</groupId> |
| 84 | + <artifactId>maven-jar-plugin</artifactId> |
| 85 | + <configuration> |
| 86 | + <archive> |
| 87 | + <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> |
| 88 | + <manifest> |
| 89 | + <addClasspath>true</addClasspath> |
| 90 | + </manifest> |
| 91 | + <manifestEntries> |
| 92 | + <Automatic-Module-Name>com.j2html</Automatic-Module-Name> |
| 93 | + </manifestEntries> |
| 94 | + </archive> |
| 95 | + </configuration> |
| 96 | + </plugin> |
| 97 | + |
| 98 | + <plugin> |
| 99 | + <groupId>org.apache.felix</groupId> |
| 100 | + <artifactId>maven-bundle-plugin</artifactId> |
| 101 | + <executions> |
| 102 | + <execution> |
| 103 | + <id>bundle-manifest</id> |
| 104 | + <phase>process-classes</phase> |
| 105 | + <goals> |
| 106 | + <goal>manifest</goal> |
| 107 | + </goals> |
| 108 | + </execution> |
| 109 | + </executions> |
| 110 | + </plugin> |
| 111 | + |
| 112 | + <!--plugin> |
| 113 | + <groupId>org.revapi</groupId> |
| 114 | + <artifactId>revapi-maven-plugin</artifactId> |
| 115 | + <configuration> |
| 116 | + <oldArtifacts> |
| 117 | + <artifact>com.j2html:j2html-ext-mathml:1.6.0</artifact> |
| 118 | + </oldArtifacts> |
| 119 | + <analysisConfiguration> |
| 120 | + <revapi.differences> |
| 121 | + <differences> |
| 122 | +
|
| 123 | + </differences> |
| 124 | + </revapi.differences> |
| 125 | + </analysisConfiguration> |
| 126 | + </configuration> |
| 127 | + </plugin--> |
| 128 | + </plugins> |
| 129 | + </build> |
| 130 | +</project> |
0 commit comments