From f20284e1fb6c4699e1cc64c7d4690cd31e68c0db Mon Sep 17 00:00:00 2001 From: Kevin Sillerud Date: Thu, 13 Jun 2019 14:06:23 +0200 Subject: [PATCH] Initial commit --- .gitignore | 9 ++++++++ LICENSE | 21 +++++++++++++++++ pom.xml | 23 +++++++++++++++++++ .../java/no/nav/test/GithubPackagesTest.java | 7 ++++++ 4 files changed, 60 insertions(+) create mode 100644 .gitignore create mode 100644 LICENSE create mode 100644 pom.xml create mode 100644 src/main/java/no/nav/test/GithubPackagesTest.java diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b2681ad --- /dev/null +++ b/.gitignore @@ -0,0 +1,9 @@ +# Idea project files +*.iml +.idea/ + +# Maven files +target/ + +# OS specific +.DS_Store \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..b34f2e8 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2018 NAV (Arbeids- og velferdsdirektoratet) - The Norwegian Labour and Welfare Administration + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..1e4c7d0 --- /dev/null +++ b/pom.xml @@ -0,0 +1,23 @@ + + + 4.0.0 + + no.nav.test + github-packages-test + 1.0 + + + 11 + 11 + + + + + github + Github navikt Maven Packages + https://maven.pkg.github.com/navikt + + + \ No newline at end of file diff --git a/src/main/java/no/nav/test/GithubPackagesTest.java b/src/main/java/no/nav/test/GithubPackagesTest.java new file mode 100644 index 0000000..952fa38 --- /dev/null +++ b/src/main/java/no/nav/test/GithubPackagesTest.java @@ -0,0 +1,7 @@ +package no.nav.test; + +public class GithubPackagesTest { + public static void main(String[] args) { + System.out.println("Hello, world!"); + } +}