Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

0.17 #47

Merged
merged 4 commits into from
Mar 5, 2016
Merged

0.17 #47

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 0 additions & 1 deletion .mvn/maven.config
@@ -1,3 +1,2 @@
--builder smart
-T1.0C
-e
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -37,6 +37,7 @@ Name | Description | Value | Default Value
------------ | ------------- | ------------- | -------------
env | Target environment | dev, qa, prod | dev
project.root | For multi-module projects it is the root project path | path | .
site.path | Path to Project Site's sources | path | .
project.jdk | The version of JDK. | java version | 1.8
snapshot.allowed.artifacts | List of dependency patterns to exclude when checking for snapshot versions | list of patterns | org.maxur:*

Expand Down
64 changes: 31 additions & 33 deletions pom.xml
Expand Up @@ -64,7 +64,7 @@
<jmockit.version>1.22</jmockit.version>

<groovy.version>2.4.6</groovy.version>
<checkstyle.version>6.15</checkstyle.version>
<checkstyle.version>6.16.1</checkstyle.version>
<velocity.version>1.7</velocity.version>
<wagon-git.version>2.0.4</wagon-git.version>

Expand Down Expand Up @@ -100,7 +100,7 @@
<maven-enforcer-plugin.version>1.4.1</maven-enforcer-plugin.version>

<maven-clover2-plugin.version>4.0.6</maven-clover2-plugin.version>
<jacoco-maven-plugin.version>0.7.5.201505241946</jacoco-maven-plugin.version>
<jacoco-maven-plugin.version>0.7.6.201602180812</jacoco-maven-plugin.version>
<qulice-maven-plugin.version>0.16.3</qulice-maven-plugin.version>
<findbugs-maven-plugin.version>3.0.3</findbugs-maven-plugin.version>
<properties-maven-plugin.version>1.0.0</properties-maven-plugin.version>
Expand Down Expand Up @@ -187,10 +187,6 @@
<profiles>
<profile>
<id>self-doc</id>
<properties>
<site.path>${basedir}/src/site</site.path>
<site.skip>false</site.skip>
</properties>

<distributionManagement>
<site>
Expand All @@ -200,29 +196,6 @@
</site>
</distributionManagement>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<phase>pre-site</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<echo>Copy README.md to site/index.md</echo>
<copy file="${project.root}/README.md" tofile="${project.root}/target//generated-site/markdown/index.md"/>
</target>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

<reporting>
<plugins>
<plugin>
Expand Down Expand Up @@ -262,9 +235,9 @@
<goal>run</goal>
</goals>
<configuration>
<tasks>
<target>
<echoproperties/>
</tasks>
</target>
</configuration>
</execution>
</executions>
Expand Down Expand Up @@ -301,7 +274,7 @@
<templateDirectory>template</templateDirectory>
<announcementFile>release-notes.md</announcementFile>
<announcementDirectory>
${project.root}/target//generated-site/markdown
${project.root}/target/generated-site/markdown
</announcementDirectory>
</configuration>
</execution>
Expand Down Expand Up @@ -485,8 +458,33 @@

<profile>
<id>site</id>
<properties>
<site.path>${basedir}/src/site</site.path>
<site.skip>false</site.skip>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<phase>pre-site</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<echo>Copy README.md to site/index.md</echo>
<copy
file="${basedir}/README.md"
tofile="${basedir}/target/generated-site/markdown/index.md"
/>
</target>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-site-plugin</artifactId>
<version>${maven-site-plugin.version}</version>
Expand Down Expand Up @@ -703,7 +701,7 @@
<reportSet>
<id>dual-report</id>
<configuration>
<type>range</type> git
<type>range</type>
<range>30</range>
</configuration>
<reports>
Expand Down