Skip to content

Commit

Permalink
added initial pom draft for generating a webjar for skosjs
Browse files Browse the repository at this point in the history
  • Loading branch information
wikier committed May 15, 2013
1 parent 48f05c8 commit 1699dd2
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -1 +1,2 @@
*~
target
49 changes: 49 additions & 0 deletions pom.xml
@@ -0,0 +1,49 @@
<?xml version='1.0' encoding='UTF-8'?>
<!--
Copyright (C) 2013 Salzburg Research.
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">

<modelVersion>4.0.0</modelVersion>

<groupId>at.salzburgresearch.skosjs</groupId>
<artifactId>skosjs-webjar</artifactId>
<version>0.2.0-SNAPSHOT</version>

<packaging>jar</packaging>

<name>SKOSjs Webjar</name>
<description>A Javascript-based SKOS editor that can be used with any SPARQL 1.1 endpoint.</description>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<build>
<resources>
<resource>
<directory>./</directory>
<filtering>false</filtering>
<!--<targetPath>${project.build.outputDirectory}/META-INF/resources/webjars/${project.artifactId}/${project.version}</targetPath>-->
<targetPath>${project.build.outputDirectory}/META-INF/resources/webjars/skosjs</targetPath>
</resource>
</resources>
</build>

</project>

0 comments on commit 1699dd2

Please sign in to comment.