we did add this section to our maven pom.xml (from within Eclipse):
...
<build>
<pluginManagement>
...
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2</version>
<executions>
<execution>
<id>enhance</id>
<phase>process-classes</phase>
<goals>
<goal>java</goal>
</goals>
<configuration>
<mainClass>com.objectdb.Enhancer</mainClass>
<arguments>
<argument>com.agile.hummingbird.Document</argument>
<argument>com.agile.hummingbird.ObjectType</argument>
<argument>com.agile.hummingbird.ObjectNode</argument>
<argument>com.agile.hummingbird.ObjectProperty</argument>
<argument>com.agile.hummingbird.LogEntry</argument>
<argument>com.agile.hummingbird.Action</argument>
<argument>com.agile.hummingbird.CurrentData</argument>
<argument>com.agile.hummingbird.SystemConfiguration</argument>
</arguments>
</configuration>
</execution>
</executions>
</plugin>
...
After creating our application jar on a workstation with the OEM license activation, we cannot start the application on another workstation. We receive a message that the evaluation limit of 1000000 objects is reached ...
