Skip to content
This repository has been archived by the owner on Dec 16, 2019. It is now read-only.

Commit

Permalink
Mavenised build.
Browse files Browse the repository at this point in the history
  • Loading branch information
cliffano committed Nov 20, 2009
1 parent 39d401e commit d9a97c4
Show file tree
Hide file tree
Showing 16 changed files with 962 additions and 0 deletions.
674 changes: 674 additions & 0 deletions LICENSE.txt

Large diffs are not rendered by default.

46 changes: 46 additions & 0 deletions emptiness/pom.xml
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,46 @@
<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>wordpress</groupId>
<artifactId>emptiness</artifactId>
<version>1.3-SNAPSHOT</version>
<description>
A minimalist theme with a white background, containing mostly texts with a header image. Simple and clean, with very lightweight HTML and CSS.
</description>
<inceptionYear>2008</inceptionYear>
<name>Emptiness Theme</name>
<parent>
<groupId>wordpress</groupId>
<artifactId>bitpress</artifactId>
<version>0.1</version>
</parent>
<licenses>
<license>
<name>GPL License</name>
<url>../LICENSE.txt</url>
</license>
</licenses>
<dependencies>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/main/assembly/descriptor.xml</descriptor>
</descriptors>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
97 changes: 97 additions & 0 deletions emptiness/src/changes/changes.xml
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,97 @@
<?xml version="1.0"?>
<document>
<properties>
<title>Changes</title>
</properties>
<body>
<release version="1.3-SNAPSHOT" date="current">
</release>
<release version="1.2" date="24-08-2009">
<action type="add" dev="cliffano">
Added global disabled comment handling.
</action>
</release>
<release version="1.1" date="06-07-2009">
<action type="add" dev="cliffano">
Added custom image header.
</action>
</release>
<release version="1.0" date="17-05-2009">
<action type="add" dev="cliffano">
Added threaded comments.
</action>
<action type="add" dev="cliffano">
Issue 8 Added xhtml doctype to language_attributes call.
</action>
<action type="update" dev="cliffano">
Changed page title to display post title followed by blog name.
</action>
</release>
<release version="0.9" date="17-02-2009">
<action type="update" dev="cliffano">
Issue 11 Fixed admin link tag.
</action>
</release>
<release version="0.8" date="26-12-2008">
<action type="add" dev="cliffano">
Added Most Commented Posts to body right sidebar.
</action>
<action type="add" dev="cliffano">
Issue 6 Added border left to indicate comments made by post author.
</action>
<action type="update" dev="cliffano">
Issue 7 Fixed logout link from comment form.
</action>
<action type="add" dev="cliffano">
Issue 8 Added language attributes to html tag.
</action>
</release>
<release version="0.7.1" date="12-12-2008">
<action type="update" dev="cliffano">
Adjusted margin and padding for aligned elements.
</action>
</release>
<release version="0.6" date="15-11-2008">
<action type="add" dev="cliffano">
Added link to WordPress admin, only displayed when user is logged in.
</action>
</release>
<release version="0.5" date="19-10-2008">
<action type="add" dev="cliffano">
Added limited microformat support (fn, url) on post and comment authors.
</action>
</release>
<release version="0.4" date="28-09-2008">
<action type="add" dev="cliffano">
Issue 2 Comment date becomes permalink.
</action>
<action type="add" dev="cliffano">
Issue 3 Comment gravatar is linked to commenter's URL.
</action>
<action type="add" dev="cliffano">
Issue 4 Added author gravatar to post details.
</action>
<action type="add" dev="cliffano">
Issue 5 Post author name is linked to author posts URL.
</action>
</release>
<release version="0.3.1" date="15-09-2008">
<action type="update" dev="cliffano">
Theme is now valid XHTML.
</action>
<action type="update" dev="cliffano">
Issue 1 Rendering problem on IE6.
</action>
</release>
<release version="0.2" date="30-07-2008">
<action type="add" dev="cliffano">
Widgetised the sidebars: header left, header right, body right, and post left.
</action>
</release>
<release version="0.1" date="14-06-2008">
<action type="add" dev="cliffano">
Initial release.
</action>
</release>
</body>
</document>
31 changes: 31 additions & 0 deletions emptiness/src/main/assembly/descriptor.xml
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,31 @@
<assembly>
<formats>
<format>zip</format>
</formats>
<fileSets>
<fileSet>
<directory>src/main/php</directory>
<includes>
<include>*.*</include>
</includes>
<useDefaultExcludes>true</useDefaultExcludes>
<outputDirectory></outputDirectory>
</fileSet>
<fileSet>
<directory>src/main/resources/images</directory>
<includes>
<include>*.*</include>
</includes>
<useDefaultExcludes>true</useDefaultExcludes>
<outputDirectory></outputDirectory>
</fileSet>
<fileSet>
<directory>src/main/resources/styles</directory>
<includes>
<include>*.*</include>
</includes>
<useDefaultExcludes>true</useDefaultExcludes>
<outputDirectory></outputDirectory>
</fileSet>
</fileSets>
</assembly>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes.
83 changes: 83 additions & 0 deletions pom.xml
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,83 @@
<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>wordpress</groupId>
<artifactId>bitpress</artifactId>
<packaging>pom</packaging>
<modules>
<module>emptiness</module>
<!--
<module>reflection</module>
-->
</modules>
<version>0.1</version>
<description>A collection of WordPress plugins and themes contributed by Studio Cliffano.</description>
<inceptionYear>2008</inceptionYear>
<name>BitPress</name>
<url>http://code.google.com/p/bitpress/</url>
<issueManagement>
<system>Google Code</system>
<url>http://code.google.com/p/bitpress/issues/list</url>
</issueManagement>
<mailingLists>
</mailingLists>
<ciManagement>
<system>hudson</system>
<url>http://tools.cliffano.com/hudson/job/bitpress/</url>
<notifiers>
<notifier>
<type>mail</type>
<configuration>
<address>blah@cliffano.com</address>
</configuration>
</notifier>
</notifiers>
</ciManagement>
<distributionManagement>
<site>
<id>ayame</id>
<url>scp://cliffano@cliffano.com:2218/var/www/cliffano.com/studio/wordpress/bitpress</url>
</site>
</distributionManagement>
<scm>
<connection>
scm:svn:http://bitpress.googlecode.com/svn/trunk/
</connection>
</scm>
<developers>
<developer>
<id>cliffano</id>
<name>Cliffano Subagio</name>
<email>blah@cliffano.com</email>
<url>http://blog.cliffano.com</url>
<roles>
<role>Developer</role>
</roles>
<timezone>+10</timezone>
</developer>
</developers>
<licenses>
<license>
<name>GPL License</name>
<url>LICENSE.txt</url>
</license>
</licenses>
<organization>
<name>Studio Cliffano</name>
<url>http://cliffano.com</url>
</organization>
<dependencies>
</dependencies>
<build>
</build>
<reporting>
<plugins>
<plugin>
<artifactId>maven-changes-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-site-plugin</artifactId>
</plugin>
</plugins>
</reporting>
</project>
Empty file.
31 changes: 31 additions & 0 deletions reflection/src/main/assembly/descriptor.xml
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,31 @@
<assembly>
<formats>
<format>zip</format>
</formats>
<fileSets>
<fileSet>
<directory>src/main/php</directory>
<includes>
<include>*.*</include>
</includes>
<useDefaultExcludes>true</useDefaultExcludes>
<outputDirectory></outputDirectory>
</fileSet>
<fileSet>
<directory>src/main/resources/images</directory>
<includes>
<include>*.*</include>
</includes>
<useDefaultExcludes>true</useDefaultExcludes>
<outputDirectory></outputDirectory>
</fileSet>
<fileSet>
<directory>src/main/resources/styles</directory>
<includes>
<include>*.*</include>
</includes>
<useDefaultExcludes>true</useDefaultExcludes>
<outputDirectory></outputDirectory>
</fileSet>
</fileSets>
</assembly>

0 comments on commit d9a97c4

Please sign in to comment.