-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
269 lines (259 loc) · 11.7 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
<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>1</version>
</parent>
<groupId>org.technologybrewery.fermenter</groupId>
<version>2.9.0-SNAPSHOT</version>
<artifactId>root</artifactId>
<packaging>pom</packaging>
<name>Fermenter</name>
<description>
In brewing, a fermenter is a vessel in which unfinished ingredients become nearly finished beer.
In Model Driven Architecture, Fermenter is a project that converts functional concepts into nearly finished
applications. This approach allows for the quick definition and assembly of applications with the focus on
functional concepts rather than technical underpinnings. Fermenter is an MDA engine that allows common
concepts to be modeled and spawn any number of generated source files. In turn, this allows developers
to focus more time on business logic, less time on technical underpinnings, and achieve extremely high levels
of architectural conformity.
</description>
<url>https://github.com/TechnologyBrewery/fermenter</url>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Ryan Ashcraft</name>
<email>dryanashcraft@gmail.com</email>
<organization>Technology Brewery</organization>
<organizationUrl>https://technologybrewery.org</organizationUrl>
</developer>
<developer>
<name>Eric Konieczny</name>
<email>ekoniec1@gmail.com</email>
<organization>Technology Brewery</organization>
<organizationUrl>https://technologybrewery.org</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:ssh://git@github.com/TechnologyBrewery/fermenter.git</connection>
<developerConnection>scm:git:ssh://git@github.com/TechnologyBrewery/fermenter.git</developerConnection>
<url>https://github.com/TechnologyBrewery/fermenter</url>
<tag>HEAD</tag>
</scm>
<modules>
<module>fermenter-mda</module>
<module>stout</module>
<module>ale</module>
<module>docker</module>
</modules>
<properties>
<cucumber.version>1.2.5</cucumber.version>
<habushu.version>2.1.0</habushu.version>
<log4j.version>2.7</log4j.version>
<slf4j.version>2.0.1</slf4j.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>${slf4j.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.4</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.11.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections4</artifactId>
<version>4.4</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.github.ben-manes.caffeine</groupId>
<artifactId>caffeine</artifactId>
<version>2.7.0</version>
<scope>compile</scope>
</dependency>
<!-- Dependency of Json Schema Validator -->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>31.1-jre</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>info.cukes</groupId>
<artifactId>cucumber-java</artifactId>
<version>${cucumber.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>info.cukes</groupId>
<artifactId>cucumber-junit</artifactId>
<version>${cucumber.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>info.cukes</groupId>
<artifactId>cucumber-spring</artifactId>
<version>${cucumber.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
<configuration>
<systemPropertyVariables>
<KRAUSENING_BASE>${project.basedir}/src/test/resources/krausening/base</KRAUSENING_BASE>
<KRAUSENING_EXTENSIONS>${project.basedir}/src/test/resources/krausening/extensions
</KRAUSENING_EXTENSIONS>
<KRAUSENING_PASSWORD>dev</KRAUSENING_PASSWORD>
</systemPropertyVariables>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<systemPropertyVariables>
<KRAUSENING_BASE>${project.basedir}/src/test/resources/krausening/base</KRAUSENING_BASE>
<KRAUSENING_EXTENSIONS>${project.basedir}/src/test/resources/krausening/extensions
</KRAUSENING_EXTENSIONS>
<KRAUSENING_PASSWORD>dev</KRAUSENING_PASSWORD>
</systemPropertyVariables>
</configuration>
</plugin>
<plugin>
<groupId>net.masterthought</groupId>
<artifactId>maven-cucumber-reporting</artifactId>
<version>4.3.0</version>
<executions>
<execution>
<id>execution</id>
<phase>post-integration-test</phase>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<projectName>fermenter</projectName>
<outputDirectory>${project.build.directory}/cucumber-html-reports</outputDirectory>
<jsonFiles>
<!-- supports wildcard or name pattern -->
<param>**/*.json</param>
</jsonFiles>
<checkBuildResult>false</checkBuildResult>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.technologybrewery.habushu</groupId>
<artifactId>habushu-maven-plugin</artifactId>
<version>2.3.0</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.technologybrewery.habushu</groupId>
<artifactId>habushu-maven-plugin</artifactId>
<extensions>true</extensions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>ossrh-release,with-python-support</releaseProfiles>
<!-- During release preparation, Habushu will automatically update the versions of Habushu modules
within their pyproject.toml configurations, however the maven-release-plugin will only commit
updates to pom.xml files. In order to version control both pom.xml and pyproject.toml files
that are updated during release preparation, customize the preparation and completion goals
to additionally execute the scm:checkin goals -->
<preparationGoals>clean verify scm:checkin -Dmessage="[maven-release-plugin] prepare release"</preparationGoals>
<completionGoals>clean verify scm:checkin -Dmessage="[maven-release-plugin] prepare for next development iteration"</completionGoals>
<goals>deploy</goals>
</configuration>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>integration-test</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
</plugin>
</plugins>
</build>
</profile>
<profile>
<!-- Require developers to opt-in for Python/Habushu support since it may not be needed
for all projects and Habushu requires the installation of build tool dependencies (i.e. Poetry)
that cannot be automatically installed through Maven -->
<id>with-python-support</id>
<modules>
<module>fermenter-mda</module>
<module>stout</module>
<module>ale</module>
<module>docker</module>
<module>brett</module>
</modules>
</profile>
</profiles>
</project>