├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── NOTICE ├── README.md ├── pom.xml └── src └── main ├── java └── no │ └── s11 │ └── owlapi │ └── ProfileChecker.java └── resources └── META-INF ├── LICENSE └── NOTICE /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stain/profilechecker/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: java 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stain/profilechecker/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stain/profilechecker/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stain/profilechecker/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stain/profilechecker/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stain/profilechecker/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/no/s11/owlapi/ProfileChecker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stain/profilechecker/HEAD/src/main/java/no/s11/owlapi/ProfileChecker.java -------------------------------------------------------------------------------- /src/main/resources/META-INF/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stain/profilechecker/HEAD/src/main/resources/META-INF/LICENSE -------------------------------------------------------------------------------- /src/main/resources/META-INF/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stain/profilechecker/HEAD/src/main/resources/META-INF/NOTICE --------------------------------------------------------------------------------