Skip to content

Instantly share code, notes, and snippets.

@adam-wypych
Created October 12, 2016 12:51
Show Gist options
  • Save adam-wypych/812be4b0d1dc49c1f66e52140fb022b3 to your computer and use it in GitHub Desktop.
Save adam-wypych/812be4b0d1dc49c1f66e52140fb022b3 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (c) 2012. JSpringBot. All Rights Reserved.
~
~ See the NOTICE file distributed with
~ this work for additional information regarding copyright ownership.
~ The JSpringBot 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>fake</groupId>
<artifactId>lib.generation</artifactId>
<version>1.0-SNAPSHOT</version>
<name>lib.generation</name>
<build>
<plugins>
<plugin>
<groupId>org.robotframework</groupId>
<artifactId>robotframework-maven-plugin</artifactId>
<version>1.4.6</version>
<executions>
<execution>
<!-- Build library specification -->
<id>xml</id>
<phase>package</phase>
<goals>
<goal>libdoc</goal>
</goals>
<configuration>
<libdoc>
<outputDirectory>${basedir}</outputDirectory>
<outputFile>${keywords.class}.xml</outputFile>
<libraryOrResourceFile>${keywords.class}</libraryOrResourceFile>
</libdoc>
</configuration>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>org.robotframework</groupId>
<artifactId>robotframework</artifactId>
<version>3.0</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>${group.dep}</groupId>
<artifactId>${artifact.dep}</artifactId>
<version>${version.dep}</version>
</dependency>
</dependencies>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment