-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
80 lines (80 loc) · 3.09 KB
/
Copy pathpom.xml
File metadata and controls
80 lines (80 loc) · 3.09 KB
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
<?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>org.minbox.framework</groupId>
<artifactId>minbox-build</artifactId>
<version>1.0.4</version>
<relativePath/>
</parent>
<groupId>org.minbox.framework</groupId>
<artifactId>minbox-parent</artifactId>
<name>MinBox Parent</name>
<version>1.1.0</version>
<packaging>pom</packaging>
<description>
Parent dependency used to build components in "minbox projects"
</description>
<properties>
<jdk.version>1.8</jdk.version>
<maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
<minbox-bom.version>1.1.0</minbox-bom.version>
<maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
</properties>
<developers>
<developer>
<id>hengboy</id>
<name>恒宇少年 - 于起宇</name>
<email>hengboy@minbox.org</email>
<url>https://blog.yuqiyu.com</url>
<organization>minbox-projects</organization>
<organizationUrl>https://github.com/minbox-projects</organizationUrl>
</developer>
</developers>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
</license>
</licenses>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.minbox.framework</groupId>
<artifactId>minbox-bom</artifactId>
<version>${minbox-bom.version}</version>
<scope>import</scope>
<type>pom</type>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>${jdk.version}</source>
<target>${jdk.version}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>${maven-jar-plugin.version}</version>
<configuration>
<archive>
<manifestEntries>
<Implementation-Title>${project.name}</Implementation-Title>
<Implementation-Version>${project.version}</Implementation-Version>
<Built-By>minbox-projects</Built-By>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>