-
Notifications
You must be signed in to change notification settings - Fork 10
/
pom.xml
87 lines (77 loc) · 3.53 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
85
86
87
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (C) 2024 gregory higgins (C) 2024 gregory higgins
This program is free software: you can redistribute it and/or modify
it under the terms of the Server Side Public License, version 1,
as published by MongoDB, Inc.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Server Side Public License for more details.
You should have received a copy of the Server Side Public License
along with this program. If not, see
<http://www.mongodb.com/licensing/server-side-public-license>.
-->
<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>com.fluxtion</groupId>
<artifactId>fluxtion.master</artifactId>
<version>9.4.4</version>
<packaging>pom</packaging>
<name>fluxtion</name>
<modules>
<module>parent-root</module>
<module>runtime</module>
<module>compiler</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.javadoc.failOnError>false</maven.javadoc.failOnError>
<maven.deploy.skip>true</maven.deploy.skip>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<pushReleases>true</pushReleases>
<!-- <next.release.version>6.1.0</next.release.version>-->
<!-- <next.development.version>6.1.1</next.development.version>-->
</properties>
<licenses>
<license>
<distribution>repo</distribution>
<name>Server Side Public License, version 1</name>
<url>http://www.mongodb.com/licensing/server-side-public-license</url>
</license>
</licenses>
<developers>
<developer>
<name>Greg Higgins</name>
<email>greg.higgins@v12technology.com</email>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/v12technology/fluxtion.git</connection>
<developerConnection>scm:git:https://github.com/v12technology/fluxtion.git</developerConnection>
<url>https://github.com/v12technology/fluxtion</url>
</scm>
<build>
<plugins>
<plugin>
<groupId>external.atlassian.jgitflow</groupId>
<artifactId>jgitflow-maven-plugin</artifactId>
<version>1.0-m5.1</version>
<configuration>
<!--<noDeploy>true</noDeploy>-->
<username>${fluxtion.github.user}</username>
<password>${fluxtion.github.password}</password>
<pushReleases>${pushReleases}</pushReleases>
<!--<useReleaseProfile>false</useReleaseProfile>-->
<!--<noTag>true</noTag>-->
<autoVersionSubmodules>true</autoVersionSubmodules>
<!-- <releaseVersion>${next.release.version}</releaseVersion>-->
<!-- <developmentVersion>${next.development.version}</developmentVersion>-->
<!--<allowSnapshots>true</allowSnapshots>-->
<!-- see goals wiki page for configuration options -->
</configuration>
</plugin>
</plugins>
</build>
</project>