Skip to content

Commit 4bb01fc

Browse files
committed
Slimmer, prettier and better Alpaca.
1 parent 32e1513 commit 4bb01fc

File tree

210 files changed

+12464
-9282
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

210 files changed

+12464
-9282
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
*.iml
2+
*.ipr
3+
*.iws
4+
.idea/
5+
build/

LICENSE.txt

Lines changed: 0 additions & 202 deletions
This file was deleted.

__old/build.xml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<?xml version='1.0'?>
2+
<project name="Alpaca Forms" basedir="../" default="update">
3+
<!-- load custom properties file -->
4+
<property file="custom-deployment.properties"/>
5+
6+
<!-- load properties from file -->
7+
<property file="deployment.properties"/>
8+
9+
<target name="clean">
10+
<mkdir dir="${local.deployment.basepath}/${appkey}"/>
11+
<delete>
12+
<fileset dir="${local.deployment.basepath}/${appkey}" includes="**/*"/>
13+
</delete>
14+
</target>
15+
16+
<target name="full" depends="clean">
17+
<copy todir="${local.deployment.basepath}/${appkey}">
18+
<fileset dir="${dev.root}/target/${artifact}-${version}">
19+
<exclude name="WEB-INF/**/*"/>
20+
</fileset>
21+
</copy>
22+
</target>
23+
24+
<target name="update">
25+
<copy todir="${local.deployment.basepath}/${appkey}">
26+
<fileset dir="src/main/webapp">
27+
</fileset>
28+
</copy>
29+
</target>
30+
</project>

__old/deployment.properties

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#
2+
# GENERAL SETTINGS
3+
#
4+
artifact=alpaca
5+
version=1.0.1-SNAPSHOT
6+
appkey=alpaca
7+
dev.root=.
8+
9+
# Local Deployment
10+
local.deployment.basepath=/
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)