Skip to content

Commit eefda30

Browse files
committed
added pom for HLCM
1 parent df49ce3 commit eefda30

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

pom.xml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?xml version="1.0"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<groupId>dcore94</groupId>
6+
<artifactId>bss</artifactId>
7+
<version>1.2.5</version>
8+
<name>BSS</name>
9+
<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>
10+
11+
<packaging>pom</packaging>
12+
13+
<build>
14+
<!-- needed by sonar plugin to find files to analyse -->
15+
<sourceDirectory>${sonar.sources}</sourceDirectory>
16+
</build>
17+
<properties>
18+
<!-- properties for sonar -->
19+
<sonar.language>js</sonar.language>
20+
<sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
21+
<!-- used in build/properties -->
22+
<sonar.sources>${basedir}/src</sonar.sources>
23+
</properties>
24+
</project>

0 commit comments

Comments
 (0)