mirror of https://github.com/apache/archiva.git
fix reporting date parsing issues, and remove snapshots
git-svn-id: https://svn.apache.org/repos/asf/maven/archiva/trunk@451579 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
fbb5dcf9f1
commit
6bfba959b8
|
@ -452,7 +452,7 @@ public class ReportingDatabase
|
||||||
{
|
{
|
||||||
getReporting().setExecutionTime( endTime.getTime() - startTime );
|
getReporting().setExecutionTime( endTime.getTime() - startTime );
|
||||||
}
|
}
|
||||||
getReporting().setLastModified( endTime );
|
getReporting().setLastModified( endTime.getTime() );
|
||||||
}
|
}
|
||||||
|
|
||||||
public ReportGroup getReportGroup()
|
public ReportGroup getReportGroup()
|
||||||
|
|
|
@ -50,7 +50,7 @@
|
||||||
<field xml.attribute="true">
|
<field xml.attribute="true">
|
||||||
<name>lastModified</name>
|
<name>lastModified</name>
|
||||||
<version>1.0.0</version>
|
<version>1.0.0</version>
|
||||||
<type>Date</type>
|
<type>long</type>
|
||||||
</field>
|
</field>
|
||||||
<field xml.attribute="true">
|
<field xml.attribute="true">
|
||||||
<name>executionTime</name>
|
<name>executionTime</name>
|
||||||
|
|
|
@ -353,22 +353,4 @@
|
||||||
</plugin>
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
<pluginRepositories>
|
|
||||||
<pluginRepository>
|
|
||||||
<id>codehaus.org</id>
|
|
||||||
<name>Codehaus Snapshot Development Repository</name>
|
|
||||||
<url>http://snapshots.repository.codehaus.org/</url>
|
|
||||||
<releases>
|
|
||||||
<enabled>false</enabled>
|
|
||||||
</releases>
|
|
||||||
</pluginRepository>
|
|
||||||
<pluginRepository>
|
|
||||||
<id>apache.org</id>
|
|
||||||
<name>Apache Snapshot Repository</name>
|
|
||||||
<url>http://people.apache.org/repo/m2-snapshot-repository</url>
|
|
||||||
<releases>
|
|
||||||
<enabled>false</enabled>
|
|
||||||
</releases>
|
|
||||||
</pluginRepository>
|
|
||||||
</pluginRepositories>
|
|
||||||
</project>
|
</project>
|
||||||
|
|
9
pom.xml
9
pom.xml
|
@ -77,7 +77,7 @@
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.codehaus.plexus</groupId>
|
<groupId>org.codehaus.plexus</groupId>
|
||||||
<artifactId>plexus-maven-plugin</artifactId>
|
<artifactId>plexus-maven-plugin</artifactId>
|
||||||
<version>1.3-SNAPSHOT</version>
|
<version>1.3</version>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<goals>
|
<goals>
|
||||||
|
@ -376,13 +376,6 @@
|
||||||
</build>
|
</build>
|
||||||
</profile>
|
</profile>
|
||||||
</profiles>
|
</profiles>
|
||||||
<!-- TODO: remove, required only for plexus maven plugin -->
|
|
||||||
<pluginRepositories>
|
|
||||||
<pluginRepository>
|
|
||||||
<id>codehaus.snapshots</id>
|
|
||||||
<url>http://snapshots.repository.codehaus.org</url>
|
|
||||||
</pluginRepository>
|
|
||||||
</pluginRepositories>
|
|
||||||
<!-- TODO: remove once xwork integration, plexus container is released -->
|
<!-- TODO: remove once xwork integration, plexus container is released -->
|
||||||
<repositories>
|
<repositories>
|
||||||
<repository>
|
<repository>
|
||||||
|
|
Loading…
Reference in New Issue