|
303 | 303 | <audit.trail.log.file>/tmp/atlas/audit/audit.log</audit.trail.log.file>
|
304 | 304 | <audit.trail.log.file.pattern>/tmp/atlas/audit/audit-%d{yyyy-MM-dd}-%i.log</audit.trail.log.file.pattern>
|
305 | 305 | <audit.trail.log.extraFile>/tmp/atlas/audit/audit-extra.log</audit.trail.log.extraFile>
|
| 306 | + |
| 307 | + <!-- Shiny --> |
| 308 | + <shiny.enabled>false</shiny.enabled> |
306 | 309 | </properties>
|
307 | 310 |
|
308 | 311 | <build>
|
|
1257 | 1260 | <version>2.0.1</version>
|
1258 | 1261 | <scope>test</scope>
|
1259 | 1262 | </dependency>
|
| 1263 | + <dependency> |
| 1264 | + <groupId>com.squareup.okhttp3</groupId> |
| 1265 | + <artifactId>okhttp</artifactId> |
| 1266 | + <version>4.12.0</version> |
| 1267 | + </dependency> |
| 1268 | + <dependency> |
| 1269 | + <groupId>com.fasterxml.jackson.datatype</groupId> |
| 1270 | + <artifactId>jackson-datatype-jsr310</artifactId> |
| 1271 | + </dependency> |
1260 | 1272 | </dependencies>
|
1261 | 1273 |
|
1262 | 1274 | <profiles>
|
|
1910 | 1922 | </dependency>
|
1911 | 1923 | </dependencies>
|
1912 | 1924 | </profile>
|
| 1925 | + <profile> |
| 1926 | + <id>webapi-shiny</id> |
| 1927 | + <properties> |
| 1928 | + <shiny.enabled>true</shiny.enabled> |
| 1929 | + <shiny.atlas.url>http://localhost/Atlas</shiny.atlas.url> |
| 1930 | + <shiny.output.directory>src/main/resources/shiny</shiny.output.directory> |
| 1931 | + <shiny.app.directory></shiny.app.directory> |
| 1932 | + <spring.profiles.active>default,shiny</spring.profiles.active> |
| 1933 | + </properties> |
| 1934 | + <build> |
| 1935 | + <plugins> |
| 1936 | + <plugin> |
| 1937 | + <groupId>org.apache.maven.plugins</groupId> |
| 1938 | + <artifactId>maven-clean-plugin</artifactId> |
| 1939 | + <version>3.3.2</version> |
| 1940 | + <configuration> |
| 1941 | + <filesets> |
| 1942 | + <fileset> |
| 1943 | + <directory>${shiny.output.directory}</directory> |
| 1944 | + <includes> |
| 1945 | + <include>shiny-cohortCounts.zip</include> |
| 1946 | + <include>shiny-incidenceRates.zip</include> |
| 1947 | + <include>shiny-cohortCharacterizations.zip</include> |
| 1948 | + </includes> |
| 1949 | + </fileset> |
| 1950 | + </filesets> |
| 1951 | + </configuration> |
| 1952 | + </plugin> |
| 1953 | + <plugin> |
| 1954 | + <groupId>org.apache.maven.plugins</groupId> |
| 1955 | + <artifactId>maven-assembly-plugin</artifactId> |
| 1956 | + <version>3.6.0</version> |
| 1957 | + <executions> |
| 1958 | + <execution> |
| 1959 | + <id>build-cohortCounts-archive</id> |
| 1960 | + <goals> |
| 1961 | + <goal>single</goal> |
| 1962 | + </goals> |
| 1963 | + <phase>generate-resources</phase> |
| 1964 | + <configuration> |
| 1965 | + <appendAssemblyId>false</appendAssemblyId> |
| 1966 | + <archiveBaseDirectory>${shiny.app.directory}</archiveBaseDirectory> |
| 1967 | + <outputDirectory>${shiny.output.directory}</outputDirectory> |
| 1968 | + <descriptors> |
| 1969 | + <descriptor>src/main/assembly/shiny-cohortCounts.xml</descriptor> |
| 1970 | + </descriptors> |
| 1971 | + <finalName>shiny-cohortCounts</finalName> |
| 1972 | + </configuration> |
| 1973 | + </execution> |
| 1974 | + <execution> |
| 1975 | + <id>build-incidenceRates-archive</id> |
| 1976 | + <goals> |
| 1977 | + <goal>single</goal> |
| 1978 | + </goals> |
| 1979 | + <phase>generate-resources</phase> |
| 1980 | + <configuration> |
| 1981 | + <appendAssemblyId>false</appendAssemblyId> |
| 1982 | + <archiveBaseDirectory>${shiny.app.directory}</archiveBaseDirectory> |
| 1983 | + <outputDirectory>${shiny.output.directory}</outputDirectory> |
| 1984 | + <descriptors> |
| 1985 | + <descriptor>src/main/assembly/shiny-incidenceRates.xml</descriptor> |
| 1986 | + </descriptors> |
| 1987 | + <finalName>shiny-incidenceRates</finalName> |
| 1988 | + </configuration> |
| 1989 | + </execution> |
| 1990 | + <execution> |
| 1991 | + <id>build-cohortCharacterizations-archive</id> |
| 1992 | + <goals> |
| 1993 | + <goal>single</goal> |
| 1994 | + </goals> |
| 1995 | + <phase>generate-resources</phase> |
| 1996 | + <configuration> |
| 1997 | + <appendAssemblyId>false</appendAssemblyId> |
| 1998 | + <archiveBaseDirectory>${shiny.app.directory}</archiveBaseDirectory> |
| 1999 | + <outputDirectory>${shiny.output.directory}</outputDirectory> |
| 2000 | + <descriptors> |
| 2001 | + <descriptor>src/main/assembly/shiny-cohortCharacterizations.xml</descriptor> |
| 2002 | + </descriptors> |
| 2003 | + <finalName>shiny-cohortCharacterizations</finalName> |
| 2004 | + </configuration> |
| 2005 | + </execution> |
| 2006 | + <execution> |
| 2007 | + <id>build-cohortPathways-archive</id> |
| 2008 | + <goals> |
| 2009 | + <goal>single</goal> |
| 2010 | + </goals> |
| 2011 | + <phase>generate-resources</phase> |
| 2012 | + <configuration> |
| 2013 | + <appendAssemblyId>false</appendAssemblyId> |
| 2014 | + <archiveBaseDirectory>${shiny.app.directory}</archiveBaseDirectory> |
| 2015 | + <outputDirectory>${shiny.output.directory}</outputDirectory> |
| 2016 | + <descriptors> |
| 2017 | + <descriptor>src/main/assembly/shiny-cohortPathways.xml</descriptor> |
| 2018 | + </descriptors> |
| 2019 | + <finalName>shiny-cohortPathways</finalName> |
| 2020 | + </configuration> |
| 2021 | + </execution> |
| 2022 | + </executions> |
| 2023 | + </plugin> |
| 2024 | + </plugins> |
| 2025 | + </build> |
| 2026 | + </profile> |
1913 | 2027 | </profiles>
|
1914 | 2028 | </project>
|
0 commit comments