Commit 37de1a15 authored by Maxime Lefrançois's avatar Maxime Lefrançois
Browse files

SAREF4AGRI extracted from https://github.com/mariapoveda/saref-ext/

parent 44c8f98b
Loading
Loading
Loading
Loading
Loading

.gitignore

0 → 100644
+5 −0
Original line number Diff line number Diff line
*~
.DS_Store
catalog-v001.xml
saref-pipeline.jar
target
 No newline at end of file

.gitlab-ci.yml

0 → 100644
+31 −0
Original line number Diff line number Diff line
image: openjdk:8-jdk

develop:
  script:
    - curl -L -o saref-pipeline.jar "https://gitlab.emse.fr/saref/saref-pipeline/-/jobs/artifacts/master/raw/target/saref-pipeline.jar?job=build"
    - java -jar saref-pipeline.jar develop -s
  except:
    - /^prerelease-v/
    - /^release-v/
  artifacts:
    when: always
    paths:
      - target/site
      - target/report_output.xml
    reports:
      junit: target/report_output.xml

release:
  script:
    - curl -L -o saref-pipeline.jar "https://gitlab.emse.fr/saref/saref-pipeline/-/jobs/artifacts/master/raw/target/saref-pipeline.jar?job=build"
    - java -jar saref-pipeline.jar release
  only: 
    - /^prerelease-v/
    - /^release-v/
  artifacts:
    when: always
    paths:
      - target/site
      - target/report_output.xml
    reports:
      junit: target/report_output.xml
+3 −0
Original line number Diff line number Diff line
forge.etsi.org/rep/:
  repos:
    - saref/saref-core
+1 −1
Original line number Diff line number Diff line
Copyright 2019 ETSI
Copyright 2020 ETSI

Redistribution and use in source and binary forms, with or without 
modification, are permitted provided that the following conditions are met:

README.md

0 → 100644
+1 −0
Original line number Diff line number Diff line
Repository for the SAREF4AGRI ontology.
Loading