[mvel] 05/42: last update of debian/copyright + cleanup of POM patching
Emmanuel Bourg
ebourg-guest at moszumanska.debian.org
Mon Jan 18 17:01:26 UTC 2016
This is an automated email from the git hooks/post-receive script.
ebourg-guest pushed a commit to branch master
in repository mvel.
commit 627bdd4e14326d0f2e38374cf67ee4aa4c60cb35
Author: Damien Raude-Morvan <drazzib at debian.org>
Date: Mon Mar 1 22:21:38 2010 +0000
last update of debian/copyright + cleanup of POM patching
---
debian/TODO | 3 -
debian/changelog | 4 +-
debian/copyright | 7 +-
debian/libmvel-java.poms | 2 +-
debian/pom.xml | 197 -----------------------------------------------
5 files changed, 7 insertions(+), 206 deletions(-)
diff --git a/debian/TODO b/debian/TODO
deleted file mode 100644
index 9e66e45..0000000
--- a/debian/TODO
+++ /dev/null
@@ -1,3 +0,0 @@
-- Remove debian/pom.xml and use directly pom.xml
- -> find a wat to patch pom.xml and use mh_patchpom cleanly
- (for now, patch cannot be unapplied after mh_patchpom)
diff --git a/debian/changelog b/debian/changelog
index a9d3f8e..98068ff 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,5 +1,5 @@
-mvel (2.0.16-1) UNRELEASED; urgency=low
+mvel (2.0.16-1) unstable; urgency=low
* Initial release (Closes: #571260)
- -- Damien Raude-Morvan <drazzib at debian.org> Sun, 21 Feb 2010 01:59:03 +0100
+ -- Damien Raude-Morvan <drazzib at debian.org> Mon, 01 Mar 2010 23:20:39 +0100
diff --git a/debian/copyright b/debian/copyright
index ee1198f..f5d8a06 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -4,9 +4,10 @@ Maintainer: Mike Brock <mbrock at codehaus.org>
Source: http://mvel.codehaus.org/
Files: *
-Copyright: Copyright (C) 2007 The Codehaus, Mike Brock, Dhanji Prasanna, John Graham, Mark Proctor
-Copyright: Copyright (C) 2007 Christopher Brock
-Copyright: Copyright (C) 2007 MVFLEX/Valhalla Project
+Copyright: 2007 The Codehaus, Mike Brock, Dhanji Prasanna, John Graham, Mark Proctor
+Copyright: 2007-2008 The Codehaus, Christopher Brock
+Copyright: 2007 MVFLEX/Valhalla Project
+Copyright: 2005 JBoss Inc
License: Apache-2.0
Files: debian/*
diff --git a/debian/libmvel-java.poms b/debian/libmvel-java.poms
index 1a7e280..d4f7111 100644
--- a/debian/libmvel-java.poms
+++ b/debian/libmvel-java.poms
@@ -1 +1 @@
-debian/pom.xml
+pom.xml
diff --git a/debian/pom.xml b/debian/pom.xml
deleted file mode 100644
index 8463a28..0000000
--- a/debian/pom.xml
+++ /dev/null
@@ -1,197 +0,0 @@
-<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/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.mvel</groupId>
- <artifactId>mvel2</artifactId>
- <packaging>jar</packaging>
- <version>2.0.16</version>
- <name>mvel</name>
- <url>http://mvel.codehaus.org/</url>
-
- <scm>
- <developerConnection>scm:svn:https://svn.codehaus.org/mvel/tags/mvel2-2.0.16</developerConnection>
- </scm>
-
- <pluginRepositories>
- <pluginRepository>
- <id>apache-snapshots</id>
- <name>Apache Snapshot Repository</name>
- <url>http://repository.apache.org/snapshots/</url>
- <snapshots>
- <enabled>true</enabled>
- </snapshots>
- </pluginRepository>
-
- </pluginRepositories>
-
- <build>
- <extensions>
- <extension>
- <groupId>org.apache.maven.wagon</groupId>
- <artifactId>wagon-webdav</artifactId>
- <version>1.0-beta-2</version>
- </extension>
- </extensions>
-
-
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.0.1</version>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- <encoding>UTF-8</encoding>
- </configuration>
- </plugin>
-
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <configuration>
- <archive>
- <manifest>
- <mainClass>org.mvel2.sh.Main</mainClass>
- <packageName>org.mvel2</packageName>
- </manifest>
- </archive>
- </configuration>
- </plugin>
-
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <configuration>
- <childDelegation>true</childDelegation>
- <systemProperties>
- <property>
- <name>mvel.disable.jit</name>
- <value>true</value>
- </property>
- <property>
- <name>file.encoding</name>
- <value>UTF-8</value>
- </property>
- </systemProperties>
- <includes>
- <include>**/*Test.java</include>
- <include>**/*Tests.java</include>
- <include>**/UsageDemos.java</include>
- </includes>
- <excludes>
- <exclude>**/CompiledUnitTestEx.java</exclude>
- <exclude>**/PerfTest.java</exclude>
- <exclude>**/DroolsTest.java</exclude>
- <exclude>**/FailureTests.java</exclude>
- <exclude>**/PerformanceTest.java</exclude>
- <exclude>**/CompiledPerformanceTests.java</exclude>
- <exclude>**/MVELThreadTest.java</exclude>
- </excludes>
- </configuration>
- </plugin>
-
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-release-plugin</artifactId>
- <version>2.0-beta-9</version>
- <configuration>
- <tagBase>https://svn.codehaus.org/mvel/tags/</tagBase>
- <!-- See http://jira.codehaus.org/browse/SCM-406 -->
- <remoteTagging>false</remoteTagging>
- <!-- Further non-mandatory but useful settings... -->
- <preparationGoals>clean install</preparationGoals>
- <autoVersionSubmodules>true</autoVersionSubmodules>
- </configuration>
- </plugin>
-
- <plugin>
- <artifactId>maven-jar-plugin</artifactId>
- <configuration>
- <archive>
- <manifestFile>META-INF/MANIFEST.MF</manifestFile>
- </archive>
- </configuration>
- </plugin>
-
- <plugin>
- <groupId>org.apache.felix</groupId>
- <artifactId>maven-bundle-plugin</artifactId>
- <version>2.0.1</version>
- <extensions>true</extensions>
- <executions>
- <execution>
- <id>manifest</id>
- <phase>process-classes</phase>
- <goals>
- <goal>manifest</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <manifestLocation>META-INF</manifestLocation>
- <instructions>
- <Bundle-SymbolicName>org.mvel2</Bundle-SymbolicName>
- <Bundle-Name>mvel2</Bundle-Name>
- </instructions>
- </configuration>
- </plugin>
- </plugins>
- </build>
-
-
- <reporting>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-report-plugin</artifactId>
- </plugin>
- </plugins>
- </reporting>
-
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
-
- <dependency>
- <groupId>com.thoughtworks.xstream</groupId>
- <artifactId>xstream</artifactId>
- <version>1.3.1</version>
- <scope>test</scope>
- </dependency>
-
- <!--<dependency>-->
- <!--<groupId>org.hibernate</groupId>-->
- <!--<artifactId>ejb3-persistence</artifactId>-->
- <!--<version>1.0.2.GA</version>-->
- <!--<scope>test</scope>-->
- <!--</dependency> -->
-
- <dependency>
- <groupId>asm</groupId>
- <artifactId>asm</artifactId>
- <version>3.x</version>
- </dependency>
-
- </dependencies>
-
-
- <distributionManagement>
- <!-- use the following if you're not using a snapshot version. -->
- <repository>
- <id>codehaus.org</id>
- <name>Codehaus Maven Repository</name>
- <url>dav:https://dav.codehaus.org/repository/mvel/</url>
- </repository>
- <!-- use the following if you ARE using a snapshot version. -->
- <snapshotRepository>
- <id>codehaus.org</id>
- <name>Codehaus Snapshot Maven Repository</name>
- <url>dav:https://dav.codehaus.org/snapshots.repository/mvel/</url>
- <uniqueVersion>false</uniqueVersion>
- </snapshotRepository>
- </distributionManagement>
-</project>
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/mvel.git
More information about the pkg-java-commits
mailing list