forked from m-m-m/code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
30 lines (28 loc) · 1.09 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
<?xml version="1.0" encoding="UTF-8"?>
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.github.m-m-m</groupId>
<artifactId>mmm</artifactId>
<version>12</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>net.sf.m-m-m</groupId>
<artifactId>mmm-code-parent</artifactId>
<version>${revision}</version>
<packaging>pom</packaging>
<name>${project.artifactId}</name>
<description>Library to parse, analyze, transform and generate code with reflective support for both byte-code and source-code.</description>
<modules>
<module>bom</module>
<module>modules</module>
</modules>
<properties>
<revision>1.0.0-beta5</revision>
<changelist>-SNAPSHOT</changelist>
<net.sf.mmm.util.version>7.5.1</net.sf.mmm.util.version>
<java.version>1.8</java.version>
<mmm.repository>code</mmm.repository>
</properties>
</project>