Download http://airdownload.adobe.com/air/lin/download/2.6/AdobeAIRInstaller.bin
Make the .bin file executable
$ chmod a+x AdobeAIRInstaller.bin
Run the .bin file by executing following
| DELIMITER | | |
| CREATE FUNCTION uuid_from_bin(b BINARY(16)) | |
| RETURNS CHAR(36) DETERMINISTIC | |
| BEGIN | |
| DECLARE hex CHAR(32); | |
| SET hex = HEX(b); | |
| RETURN CONCAT(LEFT(hex, 8), '-', MID(hex, 9,4), '-', MID(hex, 13,4), '-', MID(hex, 17,4), '-', RIGHT(hex, 12)); | |
| END | |
| | |
| @RunWith(Arquillian.class) | |
| public class CustomerResourceClientTest | |
| { | |
| private static final String REST_PATH = "rest"; | |
| @Deployment(testable = false) | |
| public static Archive<?> createDeployment() | |
| { | |
| return ShrinkWrap.create(WebArchive.class) | |
| .addPackage(Customer.class.getPackage()) |
| // Place user-specific overrides in this file, to ensure they're preserved | |
| // when upgrading | |
| { | |
| "folder_exclude_patterns": [".svn", ".git", ".hg", "CVS", "node_modules"] | |
| } |
| package ru.mystamps.web.validation.jsr303; | |
| import java.lang.annotation.Documented; | |
| import java.lang.annotation.Retention; | |
| import java.lang.annotation.Target; | |
| import javax.validation.Constraint; | |
| import javax.validation.Payload; | |
| import javax.validation.ReportAsSingleViolation; | |
| import javax.validation.constraints.Pattern; |
Download http://airdownload.adobe.com/air/lin/download/2.6/AdobeAIRInstaller.bin
Make the .bin file executable
$ chmod a+x AdobeAIRInstaller.bin
Run the .bin file by executing following