Skip to content

Commit c59185d

Browse files
author
Arran Bartish
committed
final version read for presentation
1 parent 131ecbb commit c59185d

File tree

79 files changed

+4728
-0
lines changed

Some content is hidden

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

79 files changed

+4728
-0
lines changed

Diff for: .gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,8 @@ pom.xml.releaseBackup
44
pom.xml.versionsBackup
55
pom.xml.next
66
release.properties
7+
node_modules
8+
bower_components
9+
.idea
10+
*.iml
11+
target

Diff for: README.md

+34
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,36 @@
11
# d-kom-collaborative
22
Project to be used for collaboration driven development
3+
4+
5+
# Useful commands
6+
7+
8+
mvn jcabi-mysql:run
9+
10+
starts the mysql instance in the target dorectory for any module that has one
11+
12+
13+
mvn jetty:run -Djetty.port=7070
14+
15+
Starts the configured jetty instance on port 7070. The configured war files will also be deployed.
16+
17+
18+
# snipits for the exercise
19+
20+
21+
<changeSet id="2015-03-17-add-location-to-guest" author="Your name here">
22+
<addColumn tableName="GUEST">
23+
<column name="LOCATION" type="varchar(50)">
24+
<constraints nullable="false"/>
25+
</column>
26+
</addColumn>
27+
</changeSet>
28+
29+
Change set to add a location
30+
31+
32+
# Network issues?
33+
34+
Use the profile NEXUS to use a LAN based remote repo for artifacts
35+
36+
mvn clean install -PNEXUS

0 commit comments

Comments
 (0)