Skip to content

Commit 4b5b573

Browse files
committed
#1 initial restructure to a gradle multi-project build'
1 parent af7c603 commit 4b5b573

File tree

139 files changed

+11034
-10051
lines changed

Some content is hidden

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

139 files changed

+11034
-10051
lines changed

.editorconfig

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = lf
6+
insert_final_newline = true
7+
indent_style = space
8+
indent_size = 2
9+
trim_trailing_whitespace = true

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,7 @@ staging/
22
classes/
33
gensrc/
44
test.classes/
5+
target/
56

7+
/.gradle/
8+
/bin/

README.md

+27
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
11
# EQUELLA Blackboard Integration
22

33
Information about the Equella open source community and supporting documentation can be found at https://equella.github.io/
4+
5+
Versions are repo-wide (ie all building blocks will have the same version for a given build). Versioning will be loosely tied to SemVer.
6+
7+
Version 1.X.Y will support Blackboard v3200 - v3300
8+
Version 2.W.V will support Blackboard v3400+
9+
10+
## Building the primary building block
11+
```
12+
~$ ./gradlew :oeqPrimary:cleanAndRebuild
13+
```
14+
The war is placed in (cloned repo)/oeqPrimary/build/libs/
15+
16+
## Building the audit building block
17+
For now, this is just a skeleton building block for testing.
18+
19+
Eventually it may be a helper building block to audit the Blackboard / openEQUELLA integration.
20+
21+
```
22+
~$ ./gradlew :oeqAudit:cleanAndRebuild
23+
```
24+
The war is placed in (cloned repo)/oeqAudit/build/libs/
25+
26+
## Building the linkFixer building block
27+
TODO
28+
29+
## Building the gbFixer building block
30+
TODO

bb91/plugin-jpf.xml

-26
This file was deleted.

bb91/src/com/tle/blackboard/buildingblock/BlockUtil.java

-33
This file was deleted.

0 commit comments

Comments
 (0)