Skip to content

Commit

Permalink
Initial checkin
Browse files Browse the repository at this point in the history
  • Loading branch information
fred-o committed Apr 7, 2010
0 parents commit 26ca41b
Show file tree
Hide file tree
Showing 3 changed files with 85 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .gitignore
@@ -0,0 +1,9 @@
.project
.classpath
.settings
target
*/.project
*/.classpath
*/.settings
*/target
jubb-core/src/test/tmp
59 changes: 59 additions & 0 deletions pom.xml
@@ -0,0 +1,59 @@
<?xml version="1.0" encoding="UTF-8"?>
<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>
<name>builderbuilder-maven-plugin Maven Mojo</name>
<groupId>nu.mulli</groupId>
<artifactId>builderbuilder-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
<version>1.0-SNAPSHOT</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<developers>
<developer>
<id>fredrik</id>
<name>Fredrik Appelberg</name>
<email>fredrik@mulli.nu</email>
<url>http://mulli.nu</url>
</developer>
</developers>
<licenses>
<license>
<name>BSD License</name>
</license>
</licenses>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>2.1.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.7</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-toolchain</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<version>2.0.9</version>
</dependency>
</dependencies>
</project>
17 changes: 17 additions & 0 deletions src/main/java/nu/mulli/builderbuilder/mojo/BuilderBuilderMojo.java
@@ -0,0 +1,17 @@
package nu.mulli.builderbuilder.mojo;


import org.apache.maven.plugin.AbstractMojo;

/**
* @goal generate-sources
* @phase generate-sources
*/
public class BuilderBuilderMojo extends AbstractMojo {

@Override
public void execute() {

}

}

0 comments on commit 26ca41b

Please sign in to comment.