Skip to content

Commit 5f9afc9

Browse files
committed
Hamcrest.
1 parent 93ac164 commit 5f9afc9

File tree

3 files changed

+34
-0
lines changed

3 files changed

+34
-0
lines changed

Diff for: files/hamcrest/build.sh

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/bin/sh
2+
ant -Dversion={{version}} bundle

Diff for: files/hamcrest/install-artifacts.sh

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/bin/bash
2+
3+
# what kind of cruftacular old world ant bullshit is this?
4+
5+
# POM is property versioned, but the build artifacts dont reflect any such thing.
6+
# You clearly don't give half a crap about actually producing usable maven artifacts do you?
7+
8+
# awful, misery inducing junk. you suck.
9+
10+
BUILD="{{DIR}}/build"
11+
VERSION="{{version}}"
12+
13+
for MODULE in all generator library core integration parent
14+
do
15+
mvn install:install-file -Dfile=$BUILD/maven-bundle-hamcrest-$MODULE.jar -DpomFile=$BUILD/hamcrest-$MODULE-$VERSION.pom
16+
done

Diff for: java.hamcrest.src.pb

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
- hosts: all
3+
gather_facts: False
4+
vars:
5+
TYPE: hamcrest
6+
INSTANCE: git
7+
REPO: https://github.com/hamcrest/JavaHamcrest
8+
BINS:
9+
- name: build.sh
10+
run: True
11+
- name: install-artifacts.sh
12+
run: True
13+
GLOBAL_BINS_BYPASS: True
14+
version: 1.3-redhat-1
15+
tasks:
16+
- include: tasks/compfuzor.includes type="src"

0 commit comments

Comments
 (0)