Last active
November 15, 2020 07:13
-
-
Save jmbruel/cdd9480d5b9287a0aefef21b3ef86742 to your computer and use it in GitHub Desktop.
Minimalist pom.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xmlns="http://maven.apache.org/POM/4.0.0" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>TP1</groupId> | |
<artifactId>TP1</artifactId> | |
<version>1.0.0-SNAPSHOT</version> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-compiler-plugin</artifactId> | |
<version>3.8.1</version> | |
<configuration> | |
<encoding>UTF-8</encoding> | |
<source>1.8</source> | |
<target>1.8</target> | |
</configuration> | |
</plugin> | |
<plugin> | |
<groupId>org.codehaus.mojo</groupId> | |
<artifactId>exec-maven-plugin</artifactId> | |
<version>3.0.0</version> | |
<executions> | |
<execution> | |
<id>fix0</id> | |
<phase>install</phase> | |
<goals> | |
<goal>exec</goal> | |
</goals> | |
<configuration> | |
<executable>ruby</executable> | |
<workingDirectory>tests</workingDirectory> | |
<arguments> | |
<argument>testfix0.rb</argument> | |
<argument>../README.adoc</argument> | |
</arguments> | |
</configuration> | |
</execution> | |
<execution> | |
<id>fix1.3</id> | |
<phase>install</phase> | |
<goals> | |
<goal>exec</goal> | |
</goals> | |
<configuration> | |
<executable>ruby</executable> | |
<workingDirectory>tests</workingDirectory> | |
<arguments> | |
<argument>checkModel.rb</argument> | |
<argument>../doc/TP1.plantuml</argument> | |
</arguments> | |
</configuration> | |
</execution> | |
</executions> | |
</plugin> | |
</plugins> | |
</build> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment