|
1 | 1 | <?xml version="1.0"?> |
2 | | -<project |
3 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" |
4 | | - xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
| 2 | +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" |
| 3 | + xmlns="http://maven.apache.org/POM/4.0.0" |
| 4 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
5 | 5 | <modelVersion>4.0.0</modelVersion> |
6 | 6 |
|
7 | 7 | <parent> |
|
13 | 13 | <artifactId>org.eclipse.paho.mqttv5.common</artifactId> |
14 | 14 | <name>org.eclipse.paho.mqttv5.common</name> |
15 | 15 |
|
16 | | - |
17 | 16 | <dependencies> |
18 | 17 | <dependency> |
19 | 18 | <groupId>junit</groupId> |
|
46 | 45 | <target>1.8</target> |
47 | 46 | </configuration> |
48 | 47 | </plugin> |
| 48 | + |
| 49 | + <plugin> |
| 50 | + <groupId>org.eclipse.tycho</groupId> |
| 51 | + <artifactId>tycho-maven-plugin</artifactId> |
| 52 | + </plugin> |
| 53 | + |
| 54 | + <plugin> |
| 55 | + <groupId>org.codehaus.mojo</groupId> |
| 56 | + <artifactId>templating-maven-plugin</artifactId> |
| 57 | + <version>1.0.0</version> |
| 58 | + <executions> |
| 59 | + <execution> |
| 60 | + <id>filter-src</id> |
| 61 | + <goals> |
| 62 | + <goal>filter-sources</goal> |
| 63 | + </goals> |
| 64 | + </execution> |
| 65 | + </executions> |
| 66 | + </plugin> |
| 67 | + |
| 68 | + <plugin> |
| 69 | + <groupId>org.apache.maven.plugins</groupId> |
| 70 | + <artifactId>maven-resources-plugin</artifactId> |
| 71 | + <version>3.0.2</version> |
| 72 | + <executions> |
| 73 | + <execution> |
| 74 | + <id>default-copy-resources</id> |
| 75 | + <phase>process-resources</phase> |
| 76 | + <goals> |
| 77 | + <goal>copy-resources</goal> |
| 78 | + </goals> |
| 79 | + <configuration> |
| 80 | + <overwrite>true</overwrite> |
| 81 | + <outputDirectory>${project.build.outputDirectory}</outputDirectory> |
| 82 | + <resources> |
| 83 | + <resource> |
| 84 | + <!-- used in modules which relative to its parent --> |
| 85 | + <directory>../</directory> |
| 86 | + <includes> |
| 87 | + <include>about.html</include> |
| 88 | + </includes> |
| 89 | + </resource> |
| 90 | + </resources> |
| 91 | + </configuration> |
| 92 | + </execution> |
| 93 | + </executions> |
| 94 | + </plugin> |
| 95 | + |
| 96 | + <plugin> |
| 97 | + <groupId>org.eclipse.tycho</groupId> |
| 98 | + <artifactId>tycho-compiler-plugin</artifactId> |
| 99 | + <version>${tycho.version}</version> |
| 100 | + <configuration> |
| 101 | + <source>1.8</source> |
| 102 | + <target>1.8</target> |
| 103 | + </configuration> |
| 104 | + </plugin> |
| 105 | + |
| 106 | + <plugin> |
| 107 | + <groupId>org.apache.maven.plugins</groupId> |
| 108 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 109 | + <version>${javadoc.version}</version> |
| 110 | + <executions> |
| 111 | + <execution> |
| 112 | + <id>attach-javadocs</id> |
| 113 | + <goals> |
| 114 | + <goal>javadoc-no-fork</goal> |
| 115 | + <goal>jar</goal> |
| 116 | + </goals> |
| 117 | + <configuration> |
| 118 | + <additionalparam>${javadoc.opts}</additionalparam> |
| 119 | + </configuration> |
| 120 | + </execution> |
| 121 | + </executions> |
| 122 | + </plugin> |
| 123 | + |
| 124 | + <plugin> |
| 125 | + <groupId>org.apache.maven.plugins</groupId> |
| 126 | + <artifactId>maven-source-plugin</artifactId> |
| 127 | + <version>${mvnsource.version}</version> |
| 128 | + <executions> |
| 129 | + <execution> |
| 130 | + <id>attach-sources</id> |
| 131 | + <goals> |
| 132 | + <goal>jar</goal> |
| 133 | + </goals> |
| 134 | + </execution> |
| 135 | + </executions> |
| 136 | + </plugin> |
49 | 137 | </plugins> |
| 138 | + |
| 139 | + <pluginManagement> |
| 140 | + <plugins> |
| 141 | + <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the M |
| 142 | +aven build itself.--> |
| 143 | + <plugin> |
| 144 | + <groupId>org.eclipse.m2e</groupId> |
| 145 | + <artifactId>lifecycle-mapping</artifactId> |
| 146 | + <version>1.0.0</version> |
| 147 | + <configuration> |
| 148 | + <lifecycleMappingMetadata> |
| 149 | + <pluginExecutions> |
| 150 | + <pluginExecution> |
| 151 | + <pluginExecutionFilter> |
| 152 | + <groupId> |
| 153 | + org.codehaus.mojo |
| 154 | + </groupId> |
| 155 | + <artifactId> |
| 156 | + templating-maven-plugin |
| 157 | + </artifactId> |
| 158 | + <versionRange> |
| 159 | + [1.0-alpha-3,) |
| 160 | + </versionRange> |
| 161 | + <goals> |
| 162 | + <goal>filter-sources</goal> |
| 163 | + </goals> |
| 164 | + </pluginExecutionFilter> |
| 165 | + <action> |
| 166 | + <ignore /> |
| 167 | + </action> |
| 168 | + </pluginExecution> |
| 169 | + </pluginExecutions> |
| 170 | + </lifecycleMappingMetadata> |
| 171 | + </configuration> |
| 172 | + </plugin> |
| 173 | + </plugins> |
| 174 | + </pluginManagement> |
| 175 | + |
50 | 176 | </build> |
51 | 177 | </project> |
52 | 178 |
|
| 179 | + |
0 commit comments