Upgrade to quarkus 1.0.0.Final #470
diff --git a/integration-tests/fhir/pom.xml b/integration-tests/fhir/pom.xml
index 7fde005..be7636f 100644
--- a/integration-tests/fhir/pom.xml
+++ b/integration-tests/fhir/pom.xml
@@ -200,7 +200,7 @@
                                         <artifactItem>
                                             <groupId>ca.uhn.hapi.fhir</groupId>
                                             <artifactId>hapi-fhir-jpaserver-starter</artifactId>
-                                            <version>${hapi.server.version}</version>
+                                            <version>${hapi.version}</version>
                                             <type>war</type>
                                             <outputDirectory>${project.build.directory}/war</outputDirectory>
                                         </artifactItem>
diff --git a/pom.xml b/pom.xml
index 9158618..479a6b2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -40,9 +40,8 @@
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
 
-        <camel.version>3.0.0-RC3</camel.version>
-        <hapi.version>3.7.0</hapi.version>
-        <quarkus.version>1.0.0.CR2</quarkus.version>
+        <camel.version>3.0.0</camel.version>
+        <quarkus.version>1.0.0.Final</quarkus.version>
         <jetty.version>9.4.18.v20190429</jetty.version>
         <xstream.version>1.4.11</xstream.version>
         <snakeyaml.version>1.25</snakeyaml.version>
@@ -259,7 +258,6 @@
                     <configuration>
                         <failIfNoTests>false</failIfNoTests>
                         <systemProperties>
-                            <java.security.egd>file:/dev/./urandom</java.security.egd>
                             <java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
                         </systemProperties>
                     </configuration>
@@ -288,6 +286,27 @@
 
     <profiles>
         <profile>
+            <id>linux</id>
+            <activation>
+                <os>
+                    <name>Linux</name>
+                </os>
+            </activation>
+            <build>
+                <plugins>
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-surefire-plugin</artifactId>
+                        <configuration>
+                            <systemProperties>
+                                <java.security.egd>file:/dev/./urandom</java.security.egd>
+                            </systemProperties>
+                        </configuration>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+        <profile>
             <id>jdk-8-classpath</id>
             <activation>
                 <jdk>[9,</jdk>
diff --git a/poms/build-parent/pom.xml b/poms/build-parent/pom.xml
index 90f1778..f985191 100644
--- a/poms/build-parent/pom.xml
+++ b/poms/build-parent/pom.xml
@@ -35,6 +35,7 @@
 
     <properties>
         <mock-javamail.version>1.9</mock-javamail.version>
+        <hapi.version>4.1.0</hapi.version>
 
         <!-- maven-surefire-plugin -->
         <failIfNoTests>false</failIfNoTests>