Skip to content

Commit

Permalink
added pom for HLCM
Browse files Browse the repository at this point in the history
  • Loading branch information
dcore94 committed Jul 10, 2020
1 parent df49ce3 commit eefda30
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?xml version="1.0"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>dcore94</groupId>
<artifactId>bss</artifactId>
<version>1.2.5</version>
<name>BSS</name>
<description>BSS (Binding Style Sheet) is a Javascript library for data and event - binding in data-driven HTML5 applications. The binding is realized through a declarative DSL (domain specific language) based on JSON and CSS3 selectors.</description>

<packaging>pom</packaging>

<build>
<!-- needed by sonar plugin to find files to analyse -->
<sourceDirectory>${sonar.sources}</sourceDirectory>
</build>
<properties>
<!-- properties for sonar -->
<sonar.language>js</sonar.language>
<sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
<!-- used in build/properties -->
<sonar.sources>${basedir}/src</sonar.sources>
</properties>
</project>

0 comments on commit eefda30

Please sign in to comment.