Coverage for src/somesy/pom_xml/__init__.py: 100%

3 statements  

« prev     ^ index     » next       coverage.py v7.3.2, created at 2024-04-30 09:42 +0000

1"""Somesy implementation for Java Maven pom.xml.""" 

2 

3# some POM-related constants and reusable objects 

4POM_URL = "http://maven.apache.org/POM/4.0.0" 

5POM_PREF = "{" + POM_URL + "}" 

6POM_ROOT_ATRS = { 

7 "xmlns": "http://maven.apache.org/POM/4.0.0", 

8 "xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", 

9 "xsi:schemaLocation": "http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd", 

10}