Skip to content

Commit 7b563e7

Browse files
committed
tweaks
1 parent 3111b70 commit 7b563e7

File tree

3 files changed

+26
-5
lines changed

3 files changed

+26
-5
lines changed

flapi-build-project/pom.xml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,18 +27,21 @@
2727
<artifactId>build-project</artifactId>
2828
<version>0.4-SNAPSHOT</version>
2929
<packaging>pom</packaging>
30+
<name>Flapi Build Project</name>
3031

3132
<properties>
3233
<flapi.generated.sources>${project.build.directory}/generated-sources/flapi</flapi.generated.sources>
34+
<flapi.includeRuntime>false</flapi.includeRuntime>
3335
<flapi.descriptor.class>change.me</flapi.descriptor.class>
36+
<flapi.version>0.4-SNAPSHOT</flapi.version>
3437
</properties>
3538

3639
<profiles>
3740
<profile>
3841
<id>normal</id>
3942
<activation>
4043
<property>
41-
<name>!installOnly</name>
44+
<name>!flapi.build.installOnly</name>
4245
</property>
4346
</activation>
4447
<build>
@@ -48,7 +51,7 @@
4851
<plugin>
4952
<groupId>unquietcode.tools.flapi</groupId>
5053
<artifactId>flapi-build-plugin</artifactId>
51-
<version>${project.version}</version>
54+
<version>${flapi.version}</version>
5255
<executions>
5356
<execution>
5457
<goals>
@@ -57,6 +60,7 @@
5760
<configuration>
5861
<descriptorClass>${flapi.descriptor.class}</descriptorClass>
5962
<sourcesDirectory>${flapi.generated.sources}</sourcesDirectory>
63+
<includeRuntime>${flapi.includeRuntime}</includeRuntime>
6064
</configuration>
6165
</execution>
6266
</executions>

flapi-build-test-producer/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636

3737
<properties>
3838
<flapi.descriptor.class>unquietcode.tools.flapi.plugin.TestDescriptor</flapi.descriptor.class>
39+
<flapi.includeRuntime>true</flapi.includeRuntime>
3940
</properties>
4041

4142
<build>

flapi-parent/pom.xml

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2+
Copyright 2013 Benjamin Fagin
3+
4+
Licensed under the Apache License, Version 2.0 (the "License");
5+
you may not use this file except in compliance with the License.
6+
You may obtain a copy of the License at
7+
8+
http://www.apache.org/licenses/LICENSE-2.0
9+
10+
Unless required by applicable law or agreed to in writing, software
11+
distributed under the License is distributed on an "AS IS" BASIS,
12+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
See the License for the specific language governing permissions and
14+
limitations under the License.
15+
16+
17+
Read the included LICENSE.TXT for more information.
18+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
19+
120
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
221
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
322
<modelVersion>4.0.0</modelVersion>
@@ -39,7 +58,6 @@
3958
</executions>
4059
</plugin>
4160
<plugin>
42-
<groupId>org.apache.maven.plugins</groupId>
4361
<artifactId>maven-javadoc-plugin</artifactId>
4462
<version>2.8.1</version>
4563
<executions>
@@ -66,7 +84,6 @@
6684
</executions>
6785
</plugin>
6886
<plugin>
69-
<groupId>org.apache.maven.plugins</groupId>
7087
<artifactId>maven-surefire-plugin</artifactId>
7188
<version>2.9</version>
7289
<configuration>
@@ -78,7 +95,6 @@
7895
</configuration>
7996
</plugin>
8097
<plugin>
81-
<groupId>org.apache.maven.plugins</groupId>
8298
<artifactId>maven-compiler-plugin</artifactId>
8399
<version>2.5.1</version>
84100
<configuration>

0 commit comments

Comments
 (0)