Changes between Version 31 and Version 32 of PluginDevelopmentGuide
- Timestamp:
- 18.02.2015 11:46:35 (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
PluginDevelopmentGuide
v31 v32 84 84 <version>4.1.1-SNAPSHOT</version> 85 85 </parent> 86 87 <build> 88 <plugins> 89 <plugin> 90 <groupId>org.apache.felix</groupId> 91 <artifactId>maven-bundle-plugin</artifactId> 92 <configuration> 93 <instructions> 94 <Bundle-SymbolicName> 95 org.mydomain.dm4-tagging 96 </Bundle-SymbolicName> 97 </instructions> 98 </configuration> 99 </plugin> 100 </plugins> 101 </build> 102 86 103 </project> 87 104 }}} … … 127 144 {{{ 128 145 #!xml 129 <pro ject>146 <profiles> 130 147 ... 131 <felix.fileinstall.dir> 132 <![CDATA[ 148 <felix.fileinstall.dir>, 133 149 ${project.basedir}/modules/dm4-core/target, 134 150 ${project.basedir}/modules/dm4-webservice/target, … … 136 152 ... 137 153 ${project.basedir}/modules/dm4-storage-neo4j/target, 138 /home/myhome/deepamehta-dev/dm4-tagging/target 139 ]]> 154 /home/myhome/deepamehta-dev/dm4-tagging/target, 155 <!-- Note: Although the dm4-storage-neo4j module can not be hot-REdeployed it must be --> 156 ... 140 157 </felix.fileinstall.dir> 141 158 ... 142 </pro ject>159 </profiles> 143 160 }}} 144 161 … … 661 678 <configuration> 662 679 <instructions> 680 <Bundle-SymbolicName> 681 org.mydomain.dm4-tagging 682 </Bundle-SymbolicName> 663 683 <Bundle-Activator> 664 684 org.mydomain.deepamehta4.mycoolplugin.MyCoolPlugin