Skip to content

Commit

Permalink
Slimmer, prettier and better Alpaca.
Browse files Browse the repository at this point in the history
  • Loading branch information
drq committed Sep 25, 2012
1 parent 32e1513 commit 4bb01fc
Show file tree
Hide file tree
Showing 210 changed files with 12,464 additions and 9,282 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
*.iml
*.ipr
*.iws
.idea/
build/
202 changes: 0 additions & 202 deletions LICENSE.txt

This file was deleted.

30 changes: 30 additions & 0 deletions __old/build.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<?xml version='1.0'?>
<project name="Alpaca Forms" basedir="../" default="update">
<!-- load custom properties file -->
<property file="custom-deployment.properties"/>

<!-- load properties from file -->
<property file="deployment.properties"/>

<target name="clean">
<mkdir dir="${local.deployment.basepath}/${appkey}"/>
<delete>
<fileset dir="${local.deployment.basepath}/${appkey}" includes="**/*"/>
</delete>
</target>

<target name="full" depends="clean">
<copy todir="${local.deployment.basepath}/${appkey}">
<fileset dir="${dev.root}/target/${artifact}-${version}">
<exclude name="WEB-INF/**/*"/>
</fileset>
</copy>
</target>

<target name="update">
<copy todir="${local.deployment.basepath}/${appkey}">
<fileset dir="src/main/webapp">
</fileset>
</copy>
</target>
</project>
10 changes: 10 additions & 0 deletions __old/deployment.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#
# GENERAL SETTINGS
#
artifact=alpaca
version=1.0.1-SNAPSHOT
appkey=alpaca
dev.root=.

# Local Deployment
local.deployment.basepath=/
File renamed without changes.
File renamed without changes.
Loading

0 comments on commit 4bb01fc

Please sign in to comment.