-
Notifications
You must be signed in to change notification settings - Fork 334
Expand file tree
/
Copy pathpom.xml
More file actions
88 lines (80 loc) · 3.12 KB
/
Copy pathpom.xml
File metadata and controls
88 lines (80 loc) · 3.12 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
81
82
83
84
85
86
87
88
<?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>
<groupId>org.fitframework</groupId>
<artifactId>framework-parent</artifactId>
<version>3.7.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Framework Parent</name>
<description>The framework includes the FIT (a plugin-based framework), Waterflow (a reactive process engine), FEL
(FIT Expression for LLM), Ohscript (a scripting language for FIT) and elsa (a graphics Engine).
</description>
<url>https://github.com/ModelEngine-Group/fit-framework</url>
<licenses>
<license>
<name>MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Ji Yujie</name>
<email>codecaster365@outlook.com</email>
<roles>
<role>Maintainer</role>
</roles>
</developer>
<developer>
<name>Song Yongtan</name>
<email>271667068@qq.com</email>
<roles>
<role>Committer</role>
</roles>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/ModelEngine-Group/fit-framework.git</connection>
<developerConnection>scm:git:ssh://github.com/ModelEngine-Group/fit-framework.git</developerConnection>
<url>https://github.com/ModelEngine-Group/fit-framework</url>
</scm>
<modules>
<module>dependency</module>
<module>fel/java</module>
<module>fit/java</module>
<module>ohscript</module>
<module>waterflow/java</module>
</modules>
<properties>
<maven.gpg.version>3.2.7</maven.gpg.version>
<central-publishing.maven-plugin.version>0.10.0</central-publishing.maven-plugin.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${maven.gpg.version}</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>deploy</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>${central-publishing.maven-plugin.version}</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
</configuration>
</plugin>
</plugins>
</build>
</project>