This is an automated email from the git hooks/post-receive script. ben pushed a commit to tag debian/2.5.0-1 in repository autocomplete.
commit fffa5d8a57ff8ea48c8112dbdd5be2905a7bd733 Author: Benjamin Mesing <[email protected]> Date: Sun Oct 20 19:26:26 2013 +0200 - fixed POM-location and pom file --- debian/pom.xml | 75 ++++++++++++++++++++------------------------------------ debian/rules | 2 +- 2 files changed, 28 insertions(+), 49 deletions(-) diff --git a/debian/pom.xml b/debian/pom.xml index 2b0ca67..9304a88 100644 --- a/debian/pom.xml +++ b/debian/pom.xml @@ -1,37 +1,41 @@ -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" +<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> - <parent> - <groupId>com.fifesoft</groupId> - <artifactId>rtext-root-pom</artifactId> - <version>3</version> - <relativePath>../../pom.xml</relativePath> - </parent> + <parent> + <groupId>com.fifesoft</groupId> + <artifactId>rtext-root-pom</artifactId> + <version>3</version> + <relativePath>../../pom.xml</relativePath> + </parent> <groupId>com.fifesoft</groupId> - <artifactId>rsyntaxtextarea</artifactId> - <version>2.0.7</version> + <artifactId>autocomplete</artifactId> + <version>2.5.0</version> <packaging>jar</packaging> - <name>RSyntaxTextArea</name> - <description> - RSyntaxTextArea is the syntax highlighting text editor used in RText, pulled out into its - own jar so it is easily usable in any application. Features include Syntax highlighting for 20+ - languages, Code completion, Regex find and replace, Macros, Code templates, Unlimited undo/redo - Line numbering and bracket matching. + <name>AutoComplete</name> + <description> + AutoComplete is a library allowing you to add IDE-like auto-completion (aka "code completion" or + "Intellisense") to any Swing JTextComponent. Special integration is added for RSyntaxTextArea, since + this feature is commonly needed when editing source code. Features include: Drop-down completion + choice list. Optional companion "description" window, complete with full HTML support and navigable + with hyperlinks. Optional parameter completion assistance for functions and methods, ala Eclipse and + NetBeans. Completion information is typically specified in an XML file, but can even be dynamic. </description> <inceptionYear>2003</inceptionYear> - <url>http://www.fifesoft.com/rsyntaxtextarea/</url> + <url>http://www.fifesoft.com/rsyntaxtextarea</url> <licenses> <license> - <name>GNU Lesser General Public License</name> - <url>http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt</url> + <name>Modified BSD License</name> + <url>http://fifesoft.com/rsyntaxtextarea/RSyntaxTextArea.License.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> - <url>http://svn.fifesoft.com/viewvc-1.0.5/bin/cgi/viewvc.cgi/RSyntaxTextArea/?root=RSyntaxTextArea</url> - <connection>http://svn.fifesoft.com/svn/RSyntaxTextArea/RSyntaxTextArea/</connection> + <url>http://svn.fifesoft.com/viewvc-1.0.5/bin/cgi/viewvc.cgi/AutoComplete/?root=RSyntaxTextArea</url> + <connection>http://svn.fifesoft.com/svn/RSyntaxTextArea/AutoComplete</connection> </scm> <developers> <developer> @@ -41,35 +45,10 @@ </developers> <dependencies> <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <version>${junit-version}</version> - <scope>test</scope> + <groupId>com.fifesoft</groupId> + <artifactId>rsyntaxtextarea</artifactId> + <version>2.5.0</version> </dependency> </dependencies> - <build> - <plugins> - <plugin> - <artifactId>maven-compiler-plugin</artifactId> - <version>${compiler-plugin-version}</version> - <executions> - <execution> - <id>default-compile</id> - <configuration> - <fork>true</fork> - <executable>${javac14-compiler-executable}</executable> - <compilerVersion>1.4</compilerVersion> - <source>1.4</source> - <target>1.4</target> - </configuration> - <goals> - <goal>compile</goal> - </goals> - - </execution> - </executions> - </plugin> - </plugins> - </build> </project> diff --git a/debian/rules b/debian/rules index 20c1461..a4bffa8 100755 --- a/debian/rules +++ b/debian/rules @@ -12,4 +12,4 @@ get-orig-source: #uscan --download-version $(VERSION) --force-download get-orig-pom: - wget -O debian/pom.xml http://repo1.maven.org/maven2/com/fifesoft/rsyntaxtextarea/$(VERSION)/rsyntaxtextarea-$(VERSION).pom + wget -O debian/pom.xml http://repo1.maven.org/maven2/com/fifesoft/autocomplete/$(VERSION)/autocomplete-$(VERSION).pom -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/autocomplete.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

