可以从 JavaEE 6 规范中添加资源引用条目。例如:
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-ear-plugin</artifactId>
<version>3.0.0</version>
<configuration>
[...]
<version>6</version>
[...]
<resourceRefs>
<resourceRef>
<res-ref-name>jdbc/myDs1</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resourceRef>
<resourceRef>
<res-ref-name>jdbc/myDs2</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resourceRef>
</resourceRefs>
</configuration>
</plugin>
</plugins>
</build>