UNPKG

@sap/adp-abap

Version:

abap service for all yeoman generators

64 lines (59 loc) 2 kB
<?xml version="1.0" encoding="UTF-8"?> <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>com.sap.fiori</groupId> <artifactId><%= namespace %></artifactId> <version>1.0.0-SNAPSHOT</version> <packaging>war</packaging> <name>${project.artifactId}</name> <description>Adaptation Project</description> <parent> <groupId>com.sap.fiori</groupId> <artifactId>fnf-flex-parent-pom</artifactId> <version>1.24.0</version> </parent> <properties> <!-- Possibly properties for Cloud deployment --> </properties> <profiles> <profile> <id>test.build</id> <activation> <activeByDefault>true</activeByDefault> </activation> <build> <resources> <resource> <directory>src/test/qunit</directory> <targetPath>META-INF/test-resources</targetPath> </resource> </resources> </build> </profile> </profiles> <!-- YOU NEED TO SPECIFY the translationDeveloper and the translationCollection For Fiori On-Premise apps: Use FIORI_ as the prefix followed by your app name. Please use a meaningful short version of the app name and not the GIT project name.The string must not exceed 32 character --> <!--<build> <plugins> <plugin> <groupId>com.sap.ldi</groupId> <artifactId>translation-plugin</artifactId> <configuration> <translationDomain>BC</translationDomain> <translationDeveloper>DXXXXXX</translationDeveloper> <translationCollection>FIORI_XXXAPPNAMEXXX</translationCollection> </configuration> </plugin> </plugins> </build>--> <dependencies> <!-- Possibly dependency for qunit test <dependency> <groupId>com.sap.fiori</groupId> <artifactId>nw.epm.refapps.lib.reuse</artifactId> <version>1.9.23-SNAPSHOT</version> </dependency> --> </dependencies> </project>