make it reactor (want to add netbeans skin for reporting)
authorEric Barboni <skygo@netbeans.org>
Tue, 04 Mar 2014 19:21:04 +0100
changeset 181776f809c1521c8
parent 18176 bd79fb664e73
child 18178 2e1f3461b575
make it reactor (want to add netbeans skin for reporting)
add readme
other/wikitools/README
other/wikitools/faqsuckplugin/pom.xml
other/wikitools/pom.xml
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/other/wikitools/README	Tue Mar 04 19:21:04 2014 +0100
     1.3 @@ -0,0 +1,5 @@
     1.4 +Faqsuck maven plugin
     1.5 +
     1.6 +Original idea is from Tim Boudreau and can be found in path other/faqsuck
     1.7 +
     1.8 +mvn clean install site is enough as plugin is configured on itself.
     2.1 --- a/other/wikitools/faqsuckplugin/pom.xml	Sat Mar 01 20:07:45 2014 +0100
     2.2 +++ b/other/wikitools/faqsuckplugin/pom.xml	Tue Mar 04 19:21:04 2014 +0100
     2.3 @@ -1,8 +1,8 @@
     2.4  <?xml version="1.0" encoding="UTF-8"?>
     2.5  <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/xsd/maven-4.0.0.xsd">
     2.6      <modelVersion>4.0.0</modelVersion>
     2.7 -    <groupId>org.netbeans.contrib</groupId>
     2.8 -    <artifactId>faqsuck</artifactId>
     2.9 +    <groupId>org.netbeans.contrib.faqsuck</groupId>
    2.10 +    <artifactId>plugin</artifactId>
    2.11      <version>1.0-SNAPSHOT</version>
    2.12      <packaging>maven-plugin</packaging>
    2.13      <dependencies>
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/other/wikitools/pom.xml	Tue Mar 04 19:21:04 2014 +0100
     3.3 @@ -0,0 +1,16 @@
     3.4 +<?xml version="1.0" encoding="UTF-8"?>
     3.5 +<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/xsd/maven-4.0.0.xsd">
     3.6 +    <modelVersion>4.0.0</modelVersion>
     3.7 +    <groupId>org.netbeans.contrib.faqsuck</groupId>
     3.8 +    <artifactId>parent</artifactId>
     3.9 +    <version>1.0-SNAPSHOT</version>
    3.10 +    <packaging>pom</packaging>
    3.11 +    <modules>
    3.12 +        <module>faqsuckplugin</module>
    3.13 +    </modules>
    3.14 +    <properties>
    3.15 +        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    3.16 +        <maven.compiler.source>1.7</maven.compiler.source>
    3.17 +        <maven.compiler.target>1.7</maven.compiler.target>
    3.18 +    </properties>
    3.19 +</project>
    3.20 \ No newline at end of file