-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
84 lines (76 loc) · 2.9 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?xml version="1.0" encoding="UTF-8"?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>fr.cnes.icode</groupId>
<artifactId>icode-c-plugin</artifactId>
<version>1.0.0</version>
<packaging>jar</packaging>
<name>i-Code C plugin</name>
<description>Plugin to analyze C language with i-Code.</description>
<licenses>
<license>
<name>GPL-3.0</name>
<url>https://www.gnu.org/licenses/gpl-3.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<icode.version>v4.0.0</icode.version>
<jflex.version>1.7.0</jflex.version>
<maven.surfire.version>2.22.2</maven.surfire.version>
<junit.jupiter.version>5.6.0</junit.jupiter.version>
</properties>
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.github.lequal.i-CodeCNES</groupId>
<artifactId>icode-library</artifactId>
<version>${icode.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${junit.jupiter.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<!-- generate the lex code -->
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven.surfire.version}</version>
</plugin>
<plugin>
<groupId>de.jflex</groupId>
<artifactId>jflex-maven-plugin</artifactId>
<version>${jflex.version}</version>
<executions>
<execution>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<minimize>true</minimize>
<lexDefinitions>
<lexDefinition>src/main/resources/lex</lexDefinition>
</lexDefinitions>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>