-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
76 lines (68 loc) · 2.59 KB
/
pom.xml
File metadata and controls
76 lines (68 loc) · 2.59 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
<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.technologybrewery</groupId>
<artifactId>parent</artifactId>
<version>15</version>
</parent>
<groupId>org.technologybrewery.baton</groupId>
<version>1.1.4-SNAPSHOT</version>
<artifactId>baton</artifactId>
<packaging>pom</packaging>
<name>Baton::Root</name>
<description>
Baton pays homage to Burton Baton, a fabulous beer that is a blend of an English-style Old Ale and an imperial
IPA.
This "two thread" beer brings both source beers together into something arguably better than either beer was
individually. Like the beer, this project blends two components to improve an existing codebase with new
migrations. The result is more substantive and satisfying. #BringBackBurtonBaton
</description>
<url>https://github.com/TechnologyBrewery/baton</url>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>technologybrewery.org</id>
<name>TehcnologyBrewery.org Community</name>
<organization>TehcnologyBrewery.org</organization>
<organizationUrl>https://technologybrewery.org</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/TechnologyBrewery/baton.git</connection>
<developerConnection>scm:git:https://github.com/TechnologyBrewery/baton.git</developerConnection>
<url>https://github.com/TechnologyBrewery/baton/</url>
<tag>HEAD</tag>
</scm>
<properties>
</properties>
<profiles>
<profile>
<id>default</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<modules>
<module>examples</module>
</modules>
</profile>
<profile>
<id>bootstrap</id>
<modules>
<module>baton-maven-plugin</module>
</modules>
</profile>
<profile>
<id>central-release</id>
<modules>
<module>baton-maven-plugin</module>
</modules>
</profile>
</profiles>
</project>