This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<pluginManagement> | |
<plugins> | |
<!-- | |
The RPM plugin is used to create distributable apps from our war file. | |
To use it fire: | |
$ mvn install rpm:rpm | |
... | |
The resulting rpm is then found at Project/target/rpm/Project/RPMS/noarch/Project-versoin-1.noarch.rpm | |
For example: ImageServer/target/rpm/ImageServer/RPMS/noarch/ImageServer-6.5.0-1.noarch.rpm |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Test insertion of a supercolumn using insert | |
*/ | |
@Test | |
public void testInsertSuper() throws IllegalArgumentException, NoSuchElementException, | |
IllegalStateException, NotFoundException, Exception { | |
// insert value | |
ColumnPath cp = new ColumnPath("Super1"); | |
cp.setColumn(bytes("testInsertSuper_column")); |
NewerOlder